VB6 / 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 ChilkatHttp
Dim success As Long
' 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 ChilkatJsonObject
success = json.UpdateBool("is_test",1)
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 ChilkatHttpResponse
Set resp = http.PostJson3("https://domain.com/","{{type}}",json)
If (http.LastMethodSuccess = 0) Then
Debug.Print http.LastErrorText
Exit Sub
End If
Debug.Print resp.StatusCode
Debug.Print 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": [
]
}