C / Commercetools / Delete ShippingMethod by key
Back to Collection Items
#include <C_CkHttp.h>
#include <C_CkHttpResponse.h>
void ChilkatSample(void)
{
HCkHttp http;
BOOL success;
HCkHttpResponse resp;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http = CkHttp_Create();
// Adds the "Authorization: Bearer <access_token>" header.
CkHttp_putAuthToken(http,"<access_token>");
CkHttp_SetRequestHeader(http,"Content-Type","application/json");
resp = CkHttp_QuickRequest(http,"delete","https://domain.com/{{project-key}}/shipping-methods/key={{shipping-method-key}}");
if (CkHttp_getLastMethodSuccess(http) == FALSE) {
printf("%s\n",CkHttp_lastErrorText(http));
CkHttp_Dispose(http);
return;
}
printf("%d\n",CkHttpResponse_getStatusCode(resp));
printf("%s\n",CkHttpResponse_bodyStr(resp));
CkHttpResponse_Dispose(resp);
CkHttp_Dispose(http);
}
Curl Command
curl -X delete
-H "Authorization: Bearer <access_token>"
-H "Content-Type: application/json"
https://domain.com/{{project-key}}/shipping-methods/key={{shipping-method-key}}
Postman Collection Item JSON
{
"name": "Delete ShippingMethod by key",
"event": [
{
"listen": "test",
"script": {
"type": "text/javascript",
"exec": [
"tests[\"Status code \" + responseCode.code] = responseCode.code === 200 || responseCode.code === 201;",
"var data = JSON.parse(responseBody);",
"if(data.results && data.results[0] && data.results[0].id && data.results[0].version){",
" pm.environment.set(\"shipping-method-id\", data.results[0].id); ",
" pm.environment.set(\"shipping-method-version\", data.results[0].version);",
"}",
"if(data.results && data.results[0] && data.results[0].key){",
" pm.environment.set(\"shipping-method-key\", data.results[0].key); ",
"}",
"if(data.version){",
" pm.environment.set(\"shipping-method-version\", data.version);",
"}",
"if(data.id){",
" pm.environment.set(\"shipping-method-id\", data.id); ",
"}",
"if(data.key){",
" pm.environment.set(\"shipping-method-key\", data.key);",
"}",
""
]
}
}
],
"request": {
"auth": {
"type": "oauth2",
"oauth2": {
"accessToken": "{{ctp_access_token}}",
"addTokenTo": "header",
"tokenType": "Bearer"
}
},
"method": "delete",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{host}}/{{project-key}}/shipping-methods/key={{shipping-method-key}}",
"host": [
"{{host}}"
],
"path": [
"{{project-key}}",
"shipping-methods",
"key={{shipping-method-key}}"
],
"query": [
{
"key": "version",
"value": "{{shipping-method-version}}",
"equals": true,
"disabled": false
},
{
"key": "expand",
"value": "",
"equals": true,
"disabled": true
}
]
},
"description": "null",
"body": {
"mode": "raw",
"raw": ""
}
},
"response": [
]
}