Back to Collection Items
#include <C_CkHttp.h>
#include <C_CkJsonObject.h>
#include <C_CkStringBuilder.h>
#include <C_CkHttpResponse.h>
void ChilkatSample(void)
{
HCkHttp http;
BOOL success;
HCkJsonObject json;
HCkStringBuilder sbRequestBody;
HCkHttpResponse resp;
int respStatusCode;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http = CkHttp_Create();
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "url": "{{exampleImagePath}}"
// }
json = CkJsonObject_Create();
CkJsonObject_UpdateString(json,"url","{{exampleImagePath}}");
CkHttp_SetRequestHeader(http,"Authorization","App {{INFOBIP_API_KEY}}");
CkHttp_SetRequestHeader(http,"Content-Type","application/json");
sbRequestBody = CkStringBuilder_Create();
CkJsonObject_EmitSb(json,sbRequestBody);
resp = CkHttp_PTextSb(http,"DELETE","https://domain.com/whatsapp/1/senders/:sender/media",sbRequestBody,"utf-8","application/json",FALSE,FALSE);
if (CkHttp_getLastMethodSuccess(http) == FALSE) {
printf("%s\n",CkHttp_lastErrorText(http));
CkHttp_Dispose(http);
CkJsonObject_Dispose(json);
CkStringBuilder_Dispose(sbRequestBody);
return;
}
respStatusCode = CkHttpResponse_getStatusCode(resp);
printf("Response Status Code = %d\n",respStatusCode);
if (respStatusCode != 204) {
printf("Response Header:\n");
printf("%s\n",CkHttpResponse_header(resp));
printf("Response Body:\n");
printf("%s\n",CkHttpResponse_bodyStr(resp));
printf("Failed.\n");
CkHttpResponse_Dispose(resp);
CkHttp_Dispose(http);
CkJsonObject_Dispose(json);
CkStringBuilder_Dispose(sbRequestBody);
return;
}
CkHttpResponse_Dispose(resp);
printf("Success.\n");
CkHttp_Dispose(http);
CkJsonObject_Dispose(json);
CkStringBuilder_Dispose(sbRequestBody);
}
Curl Command
curl -X DELETE
-H "Authorization: App {{INFOBIP_API_KEY}}"
-H "Content-Type: application/json"
-d '{
"url": "{{exampleImagePath}}"
}'
https://domain.com/whatsapp/1/senders/:sender/media
Postman Collection Item JSON
{
"name": "Delete Media",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var firstTest = 0",
"pm.test(\"Status code is 204, media deleted\", function () {",
" firstTest = pm.response.to.have.status(204);",
"});",
"",
"pm.test(\"Media deleted successfully\", function () {",
" if (firstTest)",
" {",
" pm.expect(pm.response.text()).to.empty; ",
" }",
" else",
" {",
" pm.expect.fail('This failed because the previous test failed ...'); ",
" }",
"});",
""
],
"type": "text/javascript"
}
},
{
"listen": "prerequest",
"script": {
"exec": [
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "DELETE",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"url\": \"{{exampleImagePath}}\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/whatsapp/1/senders/:sender/media",
"host": [
"{{baseUrl}}"
],
"path": [
"whatsapp",
"1",
"senders",
":sender",
"media"
],
"variable": [
{
"key": "sender",
"value": "{{senderNumber}}",
"description": "(Required) Registered WhatsApp sender number. Must be in international format."
}
]
},
"description": "Delete WhatsApp media. May be outbound or inbound media."
},
"response": [
{
"name": "Media deleted",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"url\": \"{{exampleImagePath}}\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/whatsapp/1/senders/:sender/media",
"host": [
"{{baseUrl}}"
],
"path": [
"whatsapp",
"1",
"senders",
":sender",
"media"
],
"variable": [
{
"key": "sender",
"value": "{{senderNumber}}",
"description": "(Required) Registered WhatsApp sender number. Must be in international format."
}
]
}
},
"status": "No Content",
"code": 204,
"_postman_previewlanguage": "plain",
"header": [
{
"key": "Vary",
"value": "Origin"
},
{
"key": "Vary",
"value": "Access-Control-Request-Method"
},
{
"key": "Vary",
"value": "Access-Control-Request-Headers"
},
{
"key": "Date",
"value": "Mon, 08 Nov 2021 10:52:03 GMT"
},
{
"key": "Server",
"value": "SMS API"
},
{
"key": "X-Request-Id",
"value": "1636368723198695161"
}
],
"cookie": [
],
"body": ""
}
]
}