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.put_BasicAuth(true);
http.put_Login("{{api_key}}");
http.put_Password("{{api_secret}}");
CkHttpResponse *resp = http.QuickRequest("DELETE","https://domain.com/v1/accounts/:account_id/transfers/:transfer_id");
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
-u '{{api_key}}:{{api_secret}}'
https://domain.com/v1/accounts/:account_id/transfers/:transfer_id
Postman Collection Item JSON
{
"name": "Transfer",
"request": {
"method": "DELETE",
"header": [
],
"url": {
"raw": "{{HOST}}/v1/accounts/:account_id/transfers/:transfer_id",
"host": [
"{{HOST}}"
],
"path": [
"v1",
"accounts",
":account_id",
"transfers",
":transfer_id"
],
"variable": [
{
"key": "account_id",
"value": null
},
{
"key": "transfer_id",
"value": null
}
]
}
},
"response": [
]
}