Back to Collection Items
#include <CkHttpW.h>
#include <CkJsonObjectW.h>
#include <CkStringBuilderW.h>
#include <CkHttpResponseW.h>
void ChilkatSample(void)
{
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkHttpW http;
bool success;
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {}
CkJsonObjectW json;
// Adds the "Authorization: Bearer {{accessToken}}" header.
http.put_AuthToken(L"{{accessToken}}");
http.SetRequestHeader(L"Accept",L"text/plain, application/json, text/json");
CkStringBuilderW sbRequestBody;
json.EmitSb(sbRequestBody);
CkHttpResponseW *resp = http.PTextSb(L"DELETE",L"https://domain.com/v2/accounts/{{accountId}}/regions/{{regionId}}",sbRequestBody,L"utf-8",L"application/json",false,false);
if (http.get_LastMethodSuccess() == false) {
wprintf(L"%s\n",http.lastErrorText());
return;
}
wprintf(L"%d\n",resp->get_StatusCode());
wprintf(L"%s\n",resp->bodyStr());
delete resp;
}
Curl Command
curl -X DELETE
-H "Accept: text/plain, application/json, text/json"
-H "Authorization: Bearer {{accessToken}}"
-d '{}'
https://domain.com/v2/accounts/{{accountId}}/regions/{{regionId}}
Postman Collection Item JSON
{
"name": "Delete a region.",
"request": {
"method": "DELETE",
"header": [
{
"key": "Accept",
"value": "text/plain, application/json, text/json"
},
{
"key": "Authorization",
"value": "Bearer {{accessToken}}"
}
],
"body": {
"mode": "raw",
"raw": "{}"
},
"url": {
"raw": "{{baseUrl}}/v2/accounts/{{accountId}}/regions/{{regionId}}",
"host": [
"{{baseUrl}}"
],
"path": [
"v2",
"accounts",
"{{accountId}}",
"regions",
"{{regionId}}"
],
"variable": [
{
"key": "regionId",
"value": "{{regionId}}"
},
{
"key": "accountId",
"value": "{{accountId}}"
}
]
}
},
"response": [
]
}