Back to Collection Items
#include <CkHttp.h>
#include <CkHttpResponse.h>
void ChilkatSample(void)
{
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkHttp http;
bool success;
http.SetRequestHeader("Content-Type","application/json");
http.SetRequestHeader("X-MBX-APIKEY","{{binance-api-key}}");
CkHttpResponse *resp = http.QuickRequest("DELETE","https://domain.com/sapi/v1/broker/subAccountApi?subAccountId=&subAccountApiKey=×tamp={{timestamp}}&signature={{signature}}");
if (http.get_LastMethodSuccess() == false) {
std::cout << http.lastErrorText() << "\r\n";
return;
}
std::cout << resp->get_StatusCode() << "\r\n";
std::cout << resp->bodyStr() << "\r\n";
delete resp;
}
Curl Command
curl -X DELETE
-H "Content-Type: application/json"
-H "X-MBX-APIKEY: {{binance-api-key}}"
https://domain.com/sapi/v1/broker/subAccountApi?subAccountId=&subAccountApiKey=×tamp={{timestamp}}&signature={{signature}}
Postman Collection Item JSON
{
"name": "Delete Sub Account Api Key",
"request": {
"method": "DELETE",
"header": [
{
"key": "Content-Type",
"type": "text",
"value": "application/json"
},
{
"key": "X-MBX-APIKEY",
"type": "text",
"value": "{{binance-api-key}}"
}
],
"url": {
"raw": "{{url}}/sapi/v1/broker/subAccountApi?subAccountId=&subAccountApiKey=×tamp={{timestamp}}&signature={{signature}}",
"host": [
"{{url}}"
],
"path": [
"sapi",
"v1",
"broker",
"subAccountApi"
],
"query": [
{
"key": "subAccountId",
"value": ""
},
{
"key": "subAccountApiKey",
"value": ""
},
{
"key": "recvWindow",
"value": "5000",
"description": "The value cannot be greater than 60000",
"disabled": true
},
{
"key": "timestamp",
"value": "{{timestamp}}"
},
{
"key": "signature",
"value": "{{signature}}"
}
]
}
},
"response": [
]
}