Chilkat Online Tools

unicodeC / Infobip WhatsApp / Send WhatsApp contact message

Back to Collection Items

#include <C_CkHttpW.h>
#include <C_CkJsonObjectW.h>
#include <C_CkHttpResponseW.h>
#include <C_CkStringBuilderW.h>

void ChilkatSample(void)
    {
    HCkHttpW http;
    BOOL success;
    HCkJsonObjectW json;
    HCkHttpResponseW resp;
    HCkStringBuilderW sbResponseBody;
    HCkJsonObjectW jResp;
    int respStatusCode;
    const wchar_t *v_to;
    int messageCount;
    const wchar_t *messageId;
    int GroupId;
    const wchar_t *GroupName;
    int Id;
    const wchar_t *Name;
    const wchar_t *Description;
    const wchar_t *Action;

    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    http = CkHttpW_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.

    // {
    //   "from": "{{senderNumber}}",
    //   "to": "{{receiverNumber}}",
    //   "messageId": "test-message-{{$randomInt}}",
    //   "content": {
    //     "contacts": [
    //       {
    //         "addresses": [
    //           {
    //             "street": "Istarska",
    //             "city": "Vodnjan",
    //             "zip": "52215",
    //             "country": "Croatia",
    //             "countryCode": "HR",
    //             "type": "WORK"
    //           },
    //           {
    //             "street": "Istarska",
    //             "city": "Vodnjan",
    //             "zip": "52215",
    //             "country": "Croatia",
    //             "countryCode": "HR",
    //             "type": "HOME"
    //           }
    //         ],
    //         "birthday": "2010-01-01",
    //         "emails": [
    //           {
    //             "email": "John.Smith@example.com",
    //             "type": "WORK"
    //           },
    //           {
    //             "email": "John.Smith.priv@example.com",
    //             "type": "HOME"
    //           }
    //         ],
    //         "name": {
    //           "firstName": "John",
    //           "lastName": "Smith",
    //           "middleName": "B",
    //           "namePrefix": "Mr.",
    //           "formattedName": "Mr. John Smith"
    //         },
    //         "org": {
    //           "company": "Company Name",
    //           "department": "Department",
    //           "title": "Director"
    //         },
    //         "phones": [
    //           {
    //             "phone": "+441134960019",
    //             "type": "HOME",
    //             "waId": "441134960019"
    //           },
    //           {
    //             "phone": "+441134960000",
    //             "type": "WORK",
    //             "waId": "441134960000"
    //           }
    //         ],
    //         "urls": [
    //           {
    //             "url": "http://example.com/John.Smith",
    //             "type": "WORK"
    //           },
    //           {
    //             "url": "http://example.com/home/John.Smith",
    //             "type": "HOME"
    //           }
    //         ]
    //       }
    //     ]
    //   },
    //   "callbackData": "Callback data"
    // }

    json = CkJsonObjectW_Create();
    CkJsonObjectW_UpdateString(json,L"from",L"{{senderNumber}}");
    CkJsonObjectW_UpdateString(json,L"to",L"{{receiverNumber}}");
    CkJsonObjectW_UpdateString(json,L"messageId",L"test-message-{{$randomInt}}");
    CkJsonObjectW_UpdateString(json,L"content.contacts[0].addresses[0].street",L"Istarska");
    CkJsonObjectW_UpdateString(json,L"content.contacts[0].addresses[0].city",L"Vodnjan");
    CkJsonObjectW_UpdateString(json,L"content.contacts[0].addresses[0].zip",L"52215");
    CkJsonObjectW_UpdateString(json,L"content.contacts[0].addresses[0].country",L"Croatia");
    CkJsonObjectW_UpdateString(json,L"content.contacts[0].addresses[0].countryCode",L"HR");
    CkJsonObjectW_UpdateString(json,L"content.contacts[0].addresses[0].type",L"WORK");
    CkJsonObjectW_UpdateString(json,L"content.contacts[0].addresses[1].street",L"Istarska");
    CkJsonObjectW_UpdateString(json,L"content.contacts[0].addresses[1].city",L"Vodnjan");
    CkJsonObjectW_UpdateString(json,L"content.contacts[0].addresses[1].zip",L"52215");
    CkJsonObjectW_UpdateString(json,L"content.contacts[0].addresses[1].country",L"Croatia");
    CkJsonObjectW_UpdateString(json,L"content.contacts[0].addresses[1].countryCode",L"HR");
    CkJsonObjectW_UpdateString(json,L"content.contacts[0].addresses[1].type",L"HOME");
    CkJsonObjectW_UpdateString(json,L"content.contacts[0].birthday",L"2010-01-01");
    CkJsonObjectW_UpdateString(json,L"content.contacts[0].emails[0].email",L"John.Smith@example.com");
    CkJsonObjectW_UpdateString(json,L"content.contacts[0].emails[0].type",L"WORK");
    CkJsonObjectW_UpdateString(json,L"content.contacts[0].emails[1].email",L"John.Smith.priv@example.com");
    CkJsonObjectW_UpdateString(json,L"content.contacts[0].emails[1].type",L"HOME");
    CkJsonObjectW_UpdateString(json,L"content.contacts[0].name.firstName",L"John");
    CkJsonObjectW_UpdateString(json,L"content.contacts[0].name.lastName",L"Smith");
    CkJsonObjectW_UpdateString(json,L"content.contacts[0].name.middleName",L"B");
    CkJsonObjectW_UpdateString(json,L"content.contacts[0].name.namePrefix",L"Mr.");
    CkJsonObjectW_UpdateString(json,L"content.contacts[0].name.formattedName",L"Mr. John Smith");
    CkJsonObjectW_UpdateString(json,L"content.contacts[0].org.company",L"Company Name");
    CkJsonObjectW_UpdateString(json,L"content.contacts[0].org.department",L"Department");
    CkJsonObjectW_UpdateString(json,L"content.contacts[0].org.title",L"Director");
    CkJsonObjectW_UpdateString(json,L"content.contacts[0].phones[0].phone",L"+441134960019");
    CkJsonObjectW_UpdateString(json,L"content.contacts[0].phones[0].type",L"HOME");
    CkJsonObjectW_UpdateString(json,L"content.contacts[0].phones[0].waId",L"441134960019");
    CkJsonObjectW_UpdateString(json,L"content.contacts[0].phones[1].phone",L"+441134960000");
    CkJsonObjectW_UpdateString(json,L"content.contacts[0].phones[1].type",L"WORK");
    CkJsonObjectW_UpdateString(json,L"content.contacts[0].phones[1].waId",L"441134960000");
    CkJsonObjectW_UpdateString(json,L"content.contacts[0].urls[0].url",L"http://example.com/John.Smith");
    CkJsonObjectW_UpdateString(json,L"content.contacts[0].urls[0].type",L"WORK");
    CkJsonObjectW_UpdateString(json,L"content.contacts[0].urls[1].url",L"http://example.com/home/John.Smith");
    CkJsonObjectW_UpdateString(json,L"content.contacts[0].urls[1].type",L"HOME");
    CkJsonObjectW_UpdateString(json,L"callbackData",L"Callback data");

    CkHttpW_SetRequestHeader(http,L"Authorization",L"App {{INFOBIP_API_KEY}}");
    CkHttpW_SetRequestHeader(http,L"Content-Type",L"application/json");

    resp = CkHttpW_PostJson3(http,L"https://domain.com/whatsapp/1/message/contact",L"application/json",json);
    if (CkHttpW_getLastMethodSuccess(http) == FALSE) {
        wprintf(L"%s\n",CkHttpW_lastErrorText(http));
        CkHttpW_Dispose(http);
        CkJsonObjectW_Dispose(json);
        return;
    }

    sbResponseBody = CkStringBuilderW_Create();
    CkHttpResponseW_GetBodySb(resp,sbResponseBody);

    jResp = CkJsonObjectW_Create();
    CkJsonObjectW_LoadSb(jResp,sbResponseBody);
    CkJsonObjectW_putEmitCompact(jResp,FALSE);

    wprintf(L"Response Body:\n");
    wprintf(L"%s\n",CkJsonObjectW_emit(jResp));

    respStatusCode = CkHttpResponseW_getStatusCode(resp);
    wprintf(L"Response Status Code = %d\n",respStatusCode);
    if (respStatusCode >= 400) {
        wprintf(L"Response Header:\n");
        wprintf(L"%s\n",CkHttpResponseW_header(resp));
        wprintf(L"Failed.\n");
        CkHttpResponseW_Dispose(resp);
        CkHttpW_Dispose(http);
        CkJsonObjectW_Dispose(json);
        CkStringBuilderW_Dispose(sbResponseBody);
        CkJsonObjectW_Dispose(jResp);
        return;
    }

    CkHttpResponseW_Dispose(resp);

    // Sample JSON response:
    // (Sample code for parsing the JSON response is shown below)

    // {
    //   "to": "441134960001",
    //   "messageCount": 1,
    //   "messageId": "test-message-254",
    //   "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

    // Chilkat functions returning "const char *" return a pointer to temporary internal memory owned and managed by Chilkat.

    v_to = CkJsonObjectW_stringOf(jResp,L"to");
    messageCount = CkJsonObjectW_IntOf(jResp,L"messageCount");
    messageId = CkJsonObjectW_stringOf(jResp,L"messageId");
    GroupId = CkJsonObjectW_IntOf(jResp,L"status.groupId");
    GroupName = CkJsonObjectW_stringOf(jResp,L"status.groupName");
    Id = CkJsonObjectW_IntOf(jResp,L"status.id");
    Name = CkJsonObjectW_stringOf(jResp,L"status.name");
    Description = CkJsonObjectW_stringOf(jResp,L"status.description");
    Action = CkJsonObjectW_stringOf(jResp,L"status.action");


    CkHttpW_Dispose(http);
    CkJsonObjectW_Dispose(json);
    CkStringBuilderW_Dispose(sbResponseBody);
    CkJsonObjectW_Dispose(jResp);

    }

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": {
        "contacts": [
            {
                "addresses": [
                    {
                        "street": "Istarska",
                        "city": "Vodnjan",
                        "zip": "52215",
                        "country": "Croatia",
                        "countryCode": "HR",
                        "type": "WORK"
                    },
                    {
                        "street": "Istarska",
                        "city": "Vodnjan",
                        "zip": "52215",
                        "country": "Croatia",
                        "countryCode": "HR",
                        "type": "HOME"
                    }
                ],
                "birthday": "2010-01-01",
                "emails": [
                    {
                        "email": "John.Smith@example.com",
                        "type": "WORK"
                    },
                    {
                        "email": "John.Smith.priv@example.com",
                        "type": "HOME"
                    }
                ],
                "name": {
                    "firstName": "John",
                    "lastName": "Smith",
                    "middleName": "B",
                    "namePrefix": "Mr.",
                    "formattedName": "Mr. John Smith"
                },
                "org": {
                    "company": "Company Name",
                    "department": "Department",
                    "title": "Director"
                },
                "phones": [
                    {
                        "phone": "+441134960019",
                        "type": "HOME",
                        "waId": "441134960019"
                    },
                    {
                        "phone": "+441134960000",
                        "type": "WORK",
                        "waId": "441134960000"
                    }
                ],
                "urls": [
                    {
                        "url": "http://example.com/John.Smith",
                        "type": "WORK"
                    },
                    {
                        "url": "http://example.com/home/John.Smith",
                        "type": "HOME"
                    }
                ]
            }
        ]
    },
    "callbackData": "Callback data"
}'
https://domain.com/whatsapp/1/message/contact

Postman Collection Item JSON

{
  "name": "Send WhatsApp contact 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        \"contacts\": [\n            {\n                \"addresses\": [\n                    {\n                        \"street\": \"Istarska\",\n                        \"city\": \"Vodnjan\",\n                        \"zip\": \"52215\",\n                        \"country\": \"Croatia\",\n                        \"countryCode\": \"HR\",\n                        \"type\": \"WORK\"\n                    },\n                    {\n                        \"street\": \"Istarska\",\n                        \"city\": \"Vodnjan\",\n                        \"zip\": \"52215\",\n                        \"country\": \"Croatia\",\n                        \"countryCode\": \"HR\",\n                        \"type\": \"HOME\"\n                    }\n                ],\n                \"birthday\": \"2010-01-01\",\n                \"emails\": [\n                    {\n                        \"email\": \"John.Smith@example.com\",\n                        \"type\": \"WORK\"\n                    },\n                    {\n                        \"email\": \"John.Smith.priv@example.com\",\n                        \"type\": \"HOME\"\n                    }\n                ],\n                \"name\": {\n                    \"firstName\": \"John\",\n                    \"lastName\": \"Smith\",\n                    \"middleName\": \"B\",\n                    \"namePrefix\": \"Mr.\",\n                    \"formattedName\": \"Mr. John Smith\"\n                },\n                \"org\": {\n                    \"company\": \"Company Name\",\n                    \"department\": \"Department\",\n                    \"title\": \"Director\"\n                },\n                \"phones\": [\n                    {\n                        \"phone\": \"+441134960019\",\n                        \"type\": \"HOME\",\n                        \"waId\": \"441134960019\"\n                    },\n                    {\n                        \"phone\": \"+441134960000\",\n                        \"type\": \"WORK\",\n                        \"waId\": \"441134960000\"\n                    }\n                ],\n                \"urls\": [\n                    {\n                        \"url\": \"http://example.com/John.Smith\",\n                        \"type\": \"WORK\"\n                    },\n                    {\n                        \"url\": \"http://example.com/home/John.Smith\",\n                        \"type\": \"HOME\"\n                    }\n                ]\n            }\n        ]\n    },\n    \"callbackData\": \"Callback data\"\n}",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{baseUrl}}/whatsapp/1/message/contact",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "whatsapp",
        "1",
        "message",
        "contact"
      ]
    },
    "description": "Send a contact to a single recipient. Contact 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": "Single contact message",
      "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        \"contacts\": [\n            {\n                \"addresses\": [\n                    {\n                        \"street\": \"Istarska\",\n                        \"city\": \"Vodnjan\",\n                        \"zip\": \"52215\",\n                        \"country\": \"Croatia\",\n                        \"countryCode\": \"HR\",\n                        \"type\": \"WORK\"\n                    },\n                    {\n                        \"street\": \"Istarska\",\n                        \"city\": \"Vodnjan\",\n                        \"zip\": \"52215\",\n                        \"country\": \"Croatia\",\n                        \"countryCode\": \"HR\",\n                        \"type\": \"HOME\"\n                    }\n                ],\n                \"birthday\": \"2010-01-01\",\n                \"emails\": [\n                    {\n                        \"email\": \"John.Smith@example.com\",\n                        \"type\": \"WORK\"\n                    },\n                    {\n                        \"email\": \"John.Smith.priv@example.com\",\n                        \"type\": \"HOME\"\n                    }\n                ],\n                \"name\": {\n                    \"firstName\": \"John\",\n                    \"lastName\": \"Smith\",\n                    \"middleName\": \"B\",\n                    \"namePrefix\": \"Mr.\",\n                    \"formattedName\": \"Mr. John Smith\"\n                },\n                \"org\": {\n                    \"company\": \"Company Name\",\n                    \"department\": \"Department\",\n                    \"title\": \"Director\"\n                },\n                \"phones\": [\n                    {\n                        \"phone\": \"+441134960019\",\n                        \"type\": \"HOME\",\n                        \"waId\": \"441134960019\"\n                    },\n                    {\n                        \"phone\": \"+441134960000\",\n                        \"type\": \"WORK\",\n                        \"waId\": \"441134960000\"\n                    }\n                ],\n                \"urls\": [\n                    {\n                        \"url\": \"http://example.com/John.Smith\",\n                        \"type\": \"WORK\"\n                    },\n                    {\n                        \"url\": \"http://example.com/home/John.Smith\",\n                        \"type\": \"HOME\"\n                    }\n                ]\n            }\n        ]\n    },\n    \"callbackData\": \"Callback data\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/whatsapp/1/message/contact",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "whatsapp",
            "1",
            "message",
            "contact"
          ]
        }
      },
      "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:04:58 GMT"
        },
        {
          "key": "Content-Type",
          "value": "application/json"
        },
        {
          "key": "Server",
          "value": "SMS API"
        },
        {
          "key": "Transfer-Encoding",
          "value": "chunked"
        },
        {
          "key": "X-Request-Id",
          "value": "1636362298092064666"
        }
      ],
      "cookie": [
      ],
      "body": "{\n    \"to\": \"441134960001\",\n    \"messageCount\": 1,\n    \"messageId\": \"test-message-254\",\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": "Multiple contacts message",
      "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        \"contacts\": [\n            {\n                \"addresses\": [\n                    {\n                        \"street\": \"Istarska\",\n                        \"city\": \"Vodnjan\",\n                        \"zip\": \"52215\",\n                        \"country\": \"Croatia\",\n                        \"countryCode\": \"HR\",\n                        \"type\": \"WORK\"\n                    },\n                    {\n                        \"street\": \"Istarska\",\n                        \"city\": \"Vodnjan\",\n                        \"zip\": \"52215\",\n                        \"country\": \"Croatia\",\n                        \"countryCode\": \"HR\",\n                        \"type\": \"HOME\"\n                    }\n                ],\n                \"birthday\": \"2010-01-01\",\n                \"emails\": [\n                    {\n                        \"email\": \"John.Smith@example.com\",\n                        \"type\": \"WORK\"\n                    },\n                    {\n                        \"email\": \"John.Smith.priv@example.com\",\n                        \"type\": \"HOME\"\n                    }\n                ],\n                \"name\": {\n                    \"firstName\": \"John\",\n                    \"lastName\": \"Smith\",\n                    \"middleName\": \"B\",\n                    \"namePrefix\": \"Mr.\",\n                    \"formattedName\": \"Mr. John Smith\"\n                },\n                \"org\": {\n                    \"company\": \"Company Name\",\n                    \"department\": \"Department\",\n                    \"title\": \"Director\"\n                },\n                \"phones\": [\n                    {\n                        \"phone\": \"+441134960019\",\n                        \"type\": \"HOME\",\n                        \"waId\": \"441134960019\"\n                    },\n                    {\n                        \"phone\": \"+441134960000\",\n                        \"type\": \"WORK\",\n                        \"waId\": \"441134960000\"\n                    }\n                ],\n                \"urls\": [\n                    {\n                        \"url\": \"http://example.com/John.Smith\",\n                        \"type\": \"WORK\"\n                    },\n                    {\n                        \"url\": \"http://example.com/home/John.Smith\",\n                        \"type\": \"HOME\"\n                    }\n                ]\n            },\n            {\n                \"addresses\": [\n                    {\n                        \"street\": \"Istarska\",\n                        \"city\": \"Vodnjan\",\n                        \"zip\": \"52215\",\n                        \"country\": \"Croatia\",\n                        \"countryCode\": \"HR\",\n                        \"type\": \"WORK\"\n                    },\n                    {\n                        \"street\": \"Istarska\",\n                        \"city\": \"Vodnjan\",\n                        \"zip\": \"52215\",\n                        \"country\": \"Croatia\",\n                        \"countryCode\": \"HR\",\n                        \"type\": \"HOME\"\n                    }\n                ],\n                \"birthday\": \"2010-01-01\",\n                \"emails\": [\n                    {\n                        \"email\": \"Alexander.Abraham@example.com\",\n                        \"type\": \"WORK\"\n                    },\n                    {\n                        \"email\": \"Alexander.Abraham.priv@example.com\",\n                        \"type\": \"HOME\"\n                    }\n                ],\n                \"name\": {\n                    \"firstName\": \"Alexander\",\n                    \"lastName\": \"Abraham\",\n                    \"middleName\": \"B\",\n                    \"namePrefix\": \"Mr.\",\n                    \"formattedName\": \"Mr. Alexander Abraham\"\n                },\n                \"org\": {\n                    \"company\": \"Company Name\",\n                    \"department\": \"Department\",\n                    \"title\": \"Director\"\n                },\n                \"phones\": [\n                    {\n                        \"phone\": \"+441134960010\",\n                        \"type\": \"HOME\",\n                        \"waId\": \"441134960010\"\n                    },\n                    {\n                        \"phone\": \"+441134960011\",\n                        \"type\": \"WORK\",\n                        \"waId\": \"441134960011\"\n                    }\n                ],\n                \"urls\": [\n                    {\n                        \"url\": \"http://example.com/Alexander.Abraham\",\n                        \"type\": \"WORK\"\n                    },\n                    {\n                        \"url\": \"http://example.com/home/Alexander.Abraham\",\n                        \"type\": \"HOME\"\n                    }\n                ]\n            }\n        ]\n    },\n    \"callbackData\": \"Callback data\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/whatsapp/1/message/contact",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "whatsapp",
            "1",
            "message",
            "contact"
          ]
        }
      },
      "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:06:55 GMT"
        },
        {
          "key": "Content-Type",
          "value": "application/json"
        },
        {
          "key": "Server",
          "value": "SMS API"
        },
        {
          "key": "Transfer-Encoding",
          "value": "chunked"
        },
        {
          "key": "X-Request-Id",
          "value": "1636362415245731828"
        }
      ],
      "cookie": [
      ],
      "body": "{\n    \"to\": \"441134960001\",\n    \"messageCount\": 1,\n    \"messageId\": \"test-message-296\",\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}"
    }
  ]
}