autoit / 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.
$oHttp = ObjCreate("Chilkat.Http")
Local $bSuccess
; 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"
; }
; ]
; }
$oJson = ObjCreate("Chilkat.JsonObject")
$oJson.UpdateBool("is_test",True)
$oJson.UpdateInt("targetId",1234)
$oJson.UpdateString("key_values.key","value")
$oJson.UpdateString("profiles[0].Identity","UserId")
$oJson.UpdateString("profiles[0].Email","User@user.com")
$oJson.UpdateString("profiles[0].push_token","Token")
$oJson.UpdateString("profiles[1].Identity","UserId")
$oJson.UpdateString("profiles[1].Email","User@user.com")
$oJson.UpdateString("profiles[1].push_token","Token")
$oJson.UpdateString("profiles[2].Identity","UserId")
$oJson.UpdateString("profiles[2].Email","User@user.com")
$oJson.UpdateString("profiles[2].push_token","Token")
$oJson.UpdateString("profiles[3].Identity","UserId")
$oJson.UpdateString("profiles[3].Email","User@user.com")
$oJson.UpdateString("profiles[3].push_token","Token")
$oJson.UpdateString("profiles[4].Identity","UserId")
$oJson.UpdateString("profiles[4].Email","User@user.com")
$oJson.UpdateString("profiles[4].push_token","Token")
$oHttp.SetRequestHeader "Content-Type","{{type}}"
$oHttp.SetRequestHeader "User-Agent","{{user-agent}}"
$oHttp.SetRequestHeader "Content-Length","{{content-length}}"
Local $oResp = $oHttp.PostJson3("https://domain.com/","{{type}}",$oJson)
If ($oHttp.LastMethodSuccess = False) Then
ConsoleWrite($oHttp.LastErrorText & @CRLF)
Exit
EndIf
ConsoleWrite($oResp.StatusCode & @CRLF)
ConsoleWrite($oResp.BodyStr & @CRLF)
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": [
]
}