Objective-C / Infobip WhatsApp / Send WhatsApp interactive list message
Back to Collection Items
#import <CkoHttp.h>
#import <CkoJsonObject.h>
#import <CkoHttpResponse.h>
#import <CkoStringBuilder.h>
#import <NSString.h>
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkoHttp *http = [[CkoHttp alloc] init];
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.
// {
// "from": "{{senderNumber}}",
// "to": "{{receiverNumber}}",
// "messageId": "test-message-{{$randomInt}}",
// "content": {
// "body": {
// "text": "Some text"
// },
// "action": {
// "title": "Choose one",
// "sections": [
// {
// "rows": [
// {
// "id": "1",
// "title": "row1 title"
// },
// {
// "id": "2",
// "title": "row2 title"
// }
// ]
// }
// ]
// }
// },
// "callbackData": "Callback data"
// }
CkoJsonObject *json = [[CkoJsonObject alloc] init];
[json UpdateString: @"from" value: @"{{senderNumber}}"];
[json UpdateString: @"to" value: @"{{receiverNumber}}"];
[json UpdateString: @"messageId" value: @"test-message-{{$randomInt}}"];
[json UpdateString: @"content.body.text" value: @"Some text"];
[json UpdateString: @"content.action.title" value: @"Choose one"];
[json UpdateString: @"content.action.sections[0].rows[0].id" value: @"1"];
[json UpdateString: @"content.action.sections[0].rows[0].title" value: @"row1 title"];
[json UpdateString: @"content.action.sections[0].rows[1].id" value: @"2"];
[json UpdateString: @"content.action.sections[0].rows[1].title" value: @"row2 title"];
[json UpdateString: @"callbackData" value: @"Callback data"];
[http SetRequestHeader: @"Authorization" value: @"App {{INFOBIP_API_KEY}}"];
[http SetRequestHeader: @"Content-Type" value: @"application/json"];
CkoHttpResponse *resp = [http PostJson3: @"https://domain.com/whatsapp/1/message/interactive/list" contentType: @"application/json" json: json];
if (http.LastMethodSuccess == NO) {
NSLog(@"%@",http.LastErrorText);
return;
}
CkoStringBuilder *sbResponseBody = [[CkoStringBuilder alloc] init];
[resp GetBodySb: sbResponseBody];
CkoJsonObject *jResp = [[CkoJsonObject alloc] init];
[jResp LoadSb: sbResponseBody];
jResp.EmitCompact = NO;
NSLog(@"%@",@"Response Body:");
NSLog(@"%@",[jResp Emit]);
int respStatusCode = [resp.StatusCode intValue];
NSLog(@"%@%d",@"Response Status Code = ",respStatusCode);
if (respStatusCode >= 400) {
NSLog(@"%@",@"Response Header:");
NSLog(@"%@",resp.Header);
NSLog(@"%@",@"Failed.");
return;
}
// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)
// {
// "to": "441134960001",
// "messageCount": 1,
// "messageId": "test-message-686",
// "status": {
// "groupId": 1,
// "groupName": "PENDING",
// "id": 7,
// "name": "PENDING_ENROUTE",
// "description": "Message sent to next instance",
// "action": null
// }
// }
// Sample code for parsing the JSON response...
// Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code
NSString *v_to = [jResp StringOf: @"to"];
int messageCount = [[jResp IntOf: @"messageCount"] intValue];
NSString *messageId = [jResp StringOf: @"messageId"];
int GroupId = [[jResp IntOf: @"status.groupId"] intValue];
NSString *GroupName = [jResp StringOf: @"status.groupName"];
int Id = [[jResp IntOf: @"status.id"] intValue];
NSString *Name = [jResp StringOf: @"status.name"];
NSString *Description = [jResp StringOf: @"status.description"];
NSString *Action = [jResp StringOf: @"status.action"];
Curl Command
curl -X POST
-H "Authorization: App {{INFOBIP_API_KEY}}"
-H "Content-Type: application/json"
-d '{
"from": "{{senderNumber}}",
"to": "{{receiverNumber}}",
"messageId": "test-message-{{$randomInt}}",
"content": {
"body": {
"text": "Some text"
},
"action": {
"title": "Choose one",
"sections": [
{
"rows": [
{
"id": "1",
"title": "row1 title"
},
{
"id": "2",
"title": "row2 title"
}
]
}
]
}
},
"callbackData": "Callback data"
}'
https://domain.com/whatsapp/1/message/interactive/list
Postman Collection Item JSON
{
"name": "Send WhatsApp interactive list message",
"event": [
{
"listen": "test",
"script": {
"exec": [
"pm.test(\"Status code is 200\", function () {",
" pm.response.to.have.status(200);",
"});",
"",
"pm.test(\"Message sent successfully\", function () {",
" var jsonData = pm.response.json();",
" pm.expect(jsonData.status.description).to.eql(\"Message sent to next instance\");",
"});"
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"from\": \"{{senderNumber}}\",\n \"to\": \"{{receiverNumber}}\",\n \"messageId\": \"test-message-{{$randomInt}}\",\n \"content\": {\n \"body\": {\n \"text\": \"Some text\"\n },\n \"action\": {\n \"title\": \"Choose one\",\n \"sections\": [\n {\n \"rows\": [\n {\n \"id\": \"1\",\n \"title\": \"row1 title\"\n },\n {\n \"id\": \"2\",\n \"title\": \"row2 title\"\n }\n ]\n }\n ]\n }\n },\n \"callbackData\": \"Callback data\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/whatsapp/1/message/interactive/list",
"host": [
"{{baseUrl}}"
],
"path": [
"whatsapp",
"1",
"message",
"interactive",
"list"
]
},
"description": "Send an interactive list message to a single recipient. Interactive list messages can only be successfully delivered, if the recipient has contacted the business within the last 24 hours, otherwise template message should be used."
},
"response": [
{
"name": "Interactive list message simple",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"from\": \"{{senderNumber}}\",\n \"to\": \"{{receiverNumber}}\",\n \"messageId\": \"test-message-{{$randomInt}}\",\n \"content\": {\n \"body\": {\n \"text\": \"Some text\"\n },\n \"action\": {\n \"title\": \"Choose one\",\n \"sections\": [\n {\n \"rows\": [\n {\n \"id\": \"1\",\n \"title\": \"row1 title\"\n },\n {\n \"id\": \"2\",\n \"title\": \"row2 title\"\n }\n ]\n }\n ]\n }\n },\n \"callbackData\": \"Callback data\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/whatsapp/1/message/interactive/list",
"host": [
"{{baseUrl}}"
],
"path": [
"whatsapp",
"1",
"message",
"interactive",
"list"
]
}
},
"status": "OK",
"code": 200,
"_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 09:48:17 GMT"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Server",
"value": "SMS API"
},
{
"key": "Transfer-Encoding",
"value": "chunked"
},
{
"key": "X-Request-Id",
"value": "1636364897523954227"
}
],
"cookie": [
],
"body": "{\n \"to\": \"441134960001\",\n \"messageCount\": 1,\n \"messageId\": \"test-message-686\",\n \"status\": {\n \"groupId\": 1,\n \"groupName\": \"PENDING\",\n \"id\": 7,\n \"name\": \"PENDING_ENROUTE\",\n \"description\": \"Message sent to next instance\",\n \"action\": null\n }\n}"
},
{
"name": "Interactive list message with header",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"from\": \"{{senderNumber}}\",\n \"to\": \"{{receiverNumber}}\",\n \"messageId\": \"test-message-{{$randomInt}}\",\n \"content\": {\n \"body\": {\n \"text\": \"Some text\"\n },\n \"action\": {\n \"title\": \"Choose one\",\n \"sections\": [\n {\n \"title\": \"First section title\",\n \"rows\": [\n {\n \"id\": \"1\",\n \"title\": \"first row title\",\n \"description\": \"first row description\"\n },\n {\n \"id\": \"2\",\n \"title\": \"second row title\",\n \"description\": \"second row description\"\n }\n ]\n },\n {\n \"title\": \"Second section title\",\n \"rows\": [\n {\n \"id\": \"3\",\n \"title\": \"third row title\"\n }\n ]\n }\n ]\n },\n \"header\": {\n \"type\": \"TEXT\",\n \"text\": \"Header\"\n },\n \"footer\": {\n \"text\": \"Footer\"\n }\n },\n \"callbackData\": \"Callback data\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/whatsapp/1/message/interactive/list",
"host": [
"{{baseUrl}}"
],
"path": [
"whatsapp",
"1",
"message",
"interactive",
"list"
]
}
},
"status": "OK",
"code": 200,
"_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 09:50:40 GMT"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Server",
"value": "SMS API"
},
{
"key": "Transfer-Encoding",
"value": "chunked"
},
{
"key": "X-Request-Id",
"value": "1636365040207560828"
}
],
"cookie": [
],
"body": "{\n \"to\": \"441134960001\",\n \"messageCount\": 1,\n \"messageId\": \"test-message-856\",\n \"status\": {\n \"groupId\": 1,\n \"groupName\": \"PENDING\",\n \"id\": 7,\n \"name\": \"PENDING_ENROUTE\",\n \"description\": \"Message sent to next instance\",\n \"action\": null\n }\n}"
}
]
}