Chilkat Online Tools

Xojo / CleverTap API / Test Webhook Payload

Back to Collection Items

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

Dim http As New Chilkat.Http
Dim success As Boolean

// 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"
//     }
//   ]
// }

Dim json As New Chilkat.JsonObject
success = json.UpdateBool("is_test",True)
success = json.UpdateInt("targetId",1234)
success = json.UpdateString("key_values.key","value")
success = json.UpdateString("profiles[0].Identity","UserId")
success = json.UpdateString("profiles[0].Email","User@user.com")
success = json.UpdateString("profiles[0].push_token","Token")
success = json.UpdateString("profiles[1].Identity","UserId")
success = json.UpdateString("profiles[1].Email","User@user.com")
success = json.UpdateString("profiles[1].push_token","Token")
success = json.UpdateString("profiles[2].Identity","UserId")
success = json.UpdateString("profiles[2].Email","User@user.com")
success = json.UpdateString("profiles[2].push_token","Token")
success = json.UpdateString("profiles[3].Identity","UserId")
success = json.UpdateString("profiles[3].Email","User@user.com")
success = json.UpdateString("profiles[3].push_token","Token")
success = json.UpdateString("profiles[4].Identity","UserId")
success = json.UpdateString("profiles[4].Email","User@user.com")
success = json.UpdateString("profiles[4].push_token","Token")

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

Dim resp As Chilkat.HttpResponse
resp = http.PostJson3("https://domain.com/","{{type}}",json)
If (http.LastMethodSuccess = False) Then
    System.DebugLog(http.LastErrorText)
    Return
End If

System.DebugLog(Str(resp.StatusCode))
System.DebugLog(resp.BodyStr)

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": [
  ]
}