Chilkat Online Tools

Foxpro / CleverTap API / Test Webhook Payload

Back to Collection Items

LOCAL loHttp
LOCAL lnSuccess
LOCAL loJson
LOCAL loResp

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

loHttp = CreateObject('Chilkat_9_5_0.Http')

* Use this online tool to generate code from sample JSON: Generate Code to Create JSON

* The following JSON is sent in the request body.

* {
*   "is_test": true,
*   "targetId": 1234,
*   "key_values": {
*     "key": "value"
*   },
*   "profiles": [
*     {
*       "Identity": "UserId",
*       "Email": "User@user.com",
*       "push_token": "Token"
*     },
*     {
*       "Identity": "UserId",
*       "Email": "User@user.com",
*       "push_token": "Token"
*     },
*     {
*       "Identity": "UserId",
*       "Email": "User@user.com",
*       "push_token": "Token"
*     },
*     {
*       "Identity": "UserId",
*       "Email": "User@user.com",
*       "push_token": "Token"
*     },
*     {
*       "Identity": "UserId",
*       "Email": "User@user.com",
*       "push_token": "Token"
*     }
*   ]
* }

loJson = CreateObject('Chilkat_9_5_0.JsonObject')
loJson.UpdateBool("is_test",1)
loJson.UpdateInt("targetId",1234)
loJson.UpdateString("key_values.key","value")
loJson.UpdateString("profiles[0].Identity","UserId")
loJson.UpdateString("profiles[0].Email","User@user.com")
loJson.UpdateString("profiles[0].push_token","Token")
loJson.UpdateString("profiles[1].Identity","UserId")
loJson.UpdateString("profiles[1].Email","User@user.com")
loJson.UpdateString("profiles[1].push_token","Token")
loJson.UpdateString("profiles[2].Identity","UserId")
loJson.UpdateString("profiles[2].Email","User@user.com")
loJson.UpdateString("profiles[2].push_token","Token")
loJson.UpdateString("profiles[3].Identity","UserId")
loJson.UpdateString("profiles[3].Email","User@user.com")
loJson.UpdateString("profiles[3].push_token","Token")
loJson.UpdateString("profiles[4].Identity","UserId")
loJson.UpdateString("profiles[4].Email","User@user.com")
loJson.UpdateString("profiles[4].push_token","Token")

loHttp.SetRequestHeader("Content-Type","{{type}}")
loHttp.SetRequestHeader("User-Agent","{{user-agent}}")
loHttp.SetRequestHeader("Content-Length","{{content-length}}")

loResp = loHttp.PostJson3("https://domain.com/","{{type}}",loJson)
IF (loHttp.LastMethodSuccess = 0) THEN
    ? loHttp.LastErrorText
    RELEASE loHttp
    RELEASE loJson
    CANCEL
ENDIF

? STR(loResp.StatusCode)
? loResp.BodyStr
RELEASE loResp

RELEASE loHttp
RELEASE loJson

Curl Command

curl -X POST
	-H "Content-Type: {{type}}"
	-H "Content-Length: {{content-length}}"
	-H "User-Agent: {{user-agent}}"
	-d '{ "is_test" : true , "targetId" : 1234 , "key_values" : { "key" : "value"} , "profiles" : [ { "Identity" : "UserId" , "Email" : "User@user.com" , "push_token" : "Token"} , { "Identity" : "UserId" , "Email" : "User@user.com" , "push_token" : "Token"} , { "Identity" : "UserId" , "Email" : "User@user.com" , "push_token" : "Token"} , { "Identity" : "UserId" , "Email" : "User@user.com" , "push_token" : "Token"} , { "Identity" : "UserId" , "Email" : "User@user.com" , "push_token" : "Token"}]}'
https://domain.com/

Postman Collection Item JSON

{
  "name": "Test Webhook Payload",
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Content-Type",
        "value": "{{type}}"
      },
      {
        "key": "Content-Length",
        "value": "{{content-length}}"
      },
      {
        "key": "User-Agent",
        "value": "{{user-agent}}"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{ \"is_test\" : true , \"targetId\" : 1234 , \"key_values\" : { \"key\" : \"value\"} , \"profiles\" : [ { \"Identity\" : \"UserId\" , \"Email\" : \"User@user.com\" , \"push_token\" : \"Token\"} , { \"Identity\" : \"UserId\" , \"Email\" : \"User@user.com\" , \"push_token\" : \"Token\"} , { \"Identity\" : \"UserId\" , \"Email\" : \"User@user.com\" , \"push_token\" : \"Token\"} , { \"Identity\" : \"UserId\" , \"Email\" : \"User@user.com\" , \"push_token\" : \"Token\"} , { \"Identity\" : \"UserId\" , \"Email\" : \"User@user.com\" , \"push_token\" : \"Token\"}]}"
    },
    "url": {
      "raw": ""
    }
  },
  "response": [
  ]
}