Chilkat Online Tools

C++ / Binance perpetual future API / Cancel All Open Orders

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/fapi/v1/allOpenOrders?symbol=BTCUSDT×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/fapi/v1/allOpenOrders?symbol=BTCUSDT&timestamp={{timestamp}}&signature={{signature}}

Postman Collection Item JSON

{
  "name": "Cancel All Open Orders",
  "event": [
    {
      "listen": "prerequest",
      "script": {
        "exec": [
          ""
        ],
        "type": "text/javascript"
      }
    }
  ],
  "request": {
    "method": "DELETE",
    "header": [
      {
        "key": "Content-Type",
        "name": "Content-Type",
        "type": "text",
        "value": "application/json"
      },
      {
        "key": "X-MBX-APIKEY",
        "type": "text",
        "value": "{{binance-api-key}}"
      }
    ],
    "url": {
      "raw": "{{url}}/fapi/v1/allOpenOrders?symbol=BTCUSDT&timestamp={{timestamp}}&signature={{signature}}",
      "host": [
        "{{url}}"
      ],
      "path": [
        "fapi",
        "v1",
        "allOpenOrders"
      ],
      "query": [
        {
          "key": "symbol",
          "value": "BTCUSDT"
        },
        {
          "key": "recvWindow",
          "value": "5000",
          "description": "The value cannot be greater than 60000",
          "disabled": true
        },
        {
          "key": "timestamp",
          "value": "{{timestamp}}"
        },
        {
          "key": "signature",
          "value": "{{signature}}"
        }
      ]
    }
  },
  "response": [
  ]
}