Back to Collection Items
#include <C_CkHttp.h>
#include <C_CkJsonObject.h>
#include <C_CkHttpResponse.h>
#include <C_CkStringBuilder.h>
void ChilkatSample(void)
{
HCkHttp http;
BOOL success;
HCkJsonObject json;
HCkHttpResponse resp;
HCkStringBuilder sbResponseBody;
HCkJsonObject jResp;
int respStatusCode;
const char *id;
int businessAccountId;
const char *name;
const char *language;
const char *status;
const char *category;
const char *Body;
const char *v_Type;
// 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.
// {
// "name": "example_template_name_{{$randomInt}}_{{$randomInt}}",
// "language": "en",
// "category": "ACCOUNT_UPDATE",
// "structure": {
// "body": "body {{1}} content",
// "type": "TEXT"
// }
// }
json = CkJsonObject_Create();
CkJsonObject_UpdateString(json,"name","example_template_name_{{$randomInt}}_{{$randomInt}}");
CkJsonObject_UpdateString(json,"language","en");
CkJsonObject_UpdateString(json,"category","ACCOUNT_UPDATE");
CkJsonObject_UpdateString(json,"structure.body","body {{1}} content");
CkJsonObject_UpdateString(json,"structure.type","TEXT");
CkHttp_SetRequestHeader(http,"Authorization","App {{INFOBIP_API_KEY}}");
CkHttp_SetRequestHeader(http,"Content-Type","application/json");
resp = CkHttp_PostJson3(http,"https://domain.com/whatsapp/1/senders/:sender/templates","application/json",json);
if (CkHttp_getLastMethodSuccess(http) == FALSE) {
printf("%s\n",CkHttp_lastErrorText(http));
CkHttp_Dispose(http);
CkJsonObject_Dispose(json);
return;
}
sbResponseBody = CkStringBuilder_Create();
CkHttpResponse_GetBodySb(resp,sbResponseBody);
jResp = CkJsonObject_Create();
CkJsonObject_LoadSb(jResp,sbResponseBody);
CkJsonObject_putEmitCompact(jResp,FALSE);
printf("Response Body:\n");
printf("%s\n",CkJsonObject_emit(jResp));
respStatusCode = CkHttpResponse_getStatusCode(resp);
printf("Response Status Code = %d\n",respStatusCode);
if (respStatusCode >= 400) {
printf("Response Header:\n");
printf("%s\n",CkHttpResponse_header(resp));
printf("Failed.\n");
CkHttpResponse_Dispose(resp);
CkHttp_Dispose(http);
CkJsonObject_Dispose(json);
CkStringBuilder_Dispose(sbResponseBody);
CkJsonObject_Dispose(jResp);
return;
}
CkHttpResponse_Dispose(resp);
// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)
// {
// "id": "1072288653542716",
// "businessAccountId": 2125987241021795,
// "name": "example_template_name_767_413",
// "language": "en",
// "status": "PENDING",
// "category": "ACCOUNT_UPDATE",
// "structure": {
// "body": "body {{1}} content",
// "type": "TEXT"
// }
// }
// Sample code for parsing the JSON response...
// Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code
// Chilkat functions returning "const char *" return a pointer to temporary internal memory owned and managed by Chilkat.
id = CkJsonObject_stringOf(jResp,"id");
businessAccountId = CkJsonObject_IntOf(jResp,"businessAccountId");
name = CkJsonObject_stringOf(jResp,"name");
language = CkJsonObject_stringOf(jResp,"language");
status = CkJsonObject_stringOf(jResp,"status");
category = CkJsonObject_stringOf(jResp,"category");
Body = CkJsonObject_stringOf(jResp,"structure.body");
v_Type = CkJsonObject_stringOf(jResp,"structure.type");
CkHttp_Dispose(http);
CkJsonObject_Dispose(json);
CkStringBuilder_Dispose(sbResponseBody);
CkJsonObject_Dispose(jResp);
}
Curl Command
curl -X POST
-H "Authorization: App {{INFOBIP_API_KEY}}"
-H "Content-Type: application/json"
-d '{
"name": "example_template_name_{{$randomInt}}_{{$randomInt}}",
"language": "en",
"category": "ACCOUNT_UPDATE",
"structure": {
"body": "body {{1}} content",
"type": "TEXT"
}
}'
https://domain.com/whatsapp/1/senders/:sender/templates
Postman Collection Item JSON
{
"name": "Create WhatsApp Template",
"event": [
{
"listen": "prerequest",
"script": {
"exec": [
""
],
"type": "text/javascript"
}
},
{
"listen": "test",
"script": {
"exec": [
"pm.test(\"Status code is 201, template created\", function () {",
" pm.response.to.have.status(201);",
"});"
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"example_template_name_{{$randomInt}}_{{$randomInt}}\",\n \"language\": \"en\",\n \"category\": \"ACCOUNT_UPDATE\",\n \"structure\": {\n \"body\": \"body {{1}} content\",\n \"type\": \"TEXT\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/whatsapp/1/senders/:sender/templates",
"host": [
"{{baseUrl}}"
],
"path": [
"whatsapp",
"1",
"senders",
":sender",
"templates"
],
"variable": [
{
"key": "sender",
"value": "{{senderNumber}}",
"description": "(Required) Registered WhatsApp sender number. Must be in international format."
}
]
},
"description": "Create WhatsApp template. Created template will be submitted for WhatsApp's review and approval. Once approved, template can be sent to end-users. Refer to [template guidelines](https://www.infobip.com/docs/whatsapp/message-types#guidelines-amp-best-practices) for additional info."
},
"response": [
{
"name": "Text template simple",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"example_template_name_{{$randomInt}}_{{$randomInt}}\",\n \"language\": \"en\",\n \"category\": \"ACCOUNT_UPDATE\",\n \"structure\": {\n \"body\": \"body {{1}} content\",\n \"type\": \"TEXT\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/whatsapp/1/senders/:sender/templates",
"host": [
"{{baseUrl}}"
],
"path": [
"whatsapp",
"1",
"senders",
":sender",
"templates"
],
"variable": [
{
"key": "sender",
"value": "{{senderNumber}}",
"description": "(Required) Registered WhatsApp sender number. Must be in international format."
}
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"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:36:58 GMT"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Server",
"value": "SMS API"
},
{
"key": "Transfer-Encoding",
"value": "chunked"
},
{
"key": "X-Request-Id",
"value": "1636367818279895837"
}
],
"cookie": [
],
"body": "{\n \"id\": \"1072288653542716\",\n \"businessAccountId\": 2125987241021795,\n \"name\": \"example_template_name_767_413\",\n \"language\": \"en\",\n \"status\": \"PENDING\",\n \"category\": \"ACCOUNT_UPDATE\",\n \"structure\": {\n \"body\": \"body {{1}} content\",\n \"type\": \"TEXT\"\n }\n}"
},
{
"name": "Complex template with buttons and image",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"example_template_name_{{$randomInt}}_{{$randomInt}}\",\n \"language\": \"en\",\n \"category\": \"ACCOUNT_UPDATE\",\n \"structure\": {\n \"header\": {\n \"format\": \"IMAGE\"\n },\n \"body\": \"body {{1}} content\",\n \"footer\": \"this is footer\",\n \"buttons\": [\n {\n \"text\": \"Yes\",\n \"type\": \"QUICK_REPLY\"\n },\n {\n \"text\": \"No\",\n \"type\": \"QUICK_REPLY\"\n }\n ],\n \"type\": \"MEDIA\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/whatsapp/1/senders/:sender/templates",
"host": [
"{{baseUrl}}"
],
"path": [
"whatsapp",
"1",
"senders",
":sender",
"templates"
],
"variable": [
{
"key": "sender",
"value": "{{senderNumber}}",
"description": "(Required) Registered WhatsApp sender number. Must be in international format."
}
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"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:50:20 GMT"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Server",
"value": "SMS API"
},
{
"key": "Transfer-Encoding",
"value": "chunked"
},
{
"key": "X-Request-Id",
"value": "1636368620308994838"
}
],
"cookie": [
],
"body": "{\n \"id\": \"452107629693501\",\n \"businessAccountId\": 2125987241021795,\n \"name\": \"example_template_name_225_786\",\n \"language\": \"en\",\n \"status\": \"PENDING\",\n \"category\": \"ACCOUNT_UPDATE\",\n \"structure\": {\n \"header\": {\n \"format\": \"IMAGE\"\n },\n \"body\": \"body {{1}} content\",\n \"footer\": \"this is footer\",\n \"buttons\": [\n {\n \"text\": \"Yes\",\n \"type\": \"QUICK_REPLY\"\n },\n {\n \"text\": \"No\",\n \"type\": \"QUICK_REPLY\"\n }\n ],\n \"type\": \"MEDIA\"\n }\n}"
}
]
}