Swift3 / CleverTap API / Test Webhook Payload
Back to Collection Items
func chilkatTest() {
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let http = CkoHttp()!
var success: Bool
// 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"
// }
// ]
// }
let json = CkoJsonObject()!
json.updateBool("is_test", value: true)
json.updateInt("targetId", value: 1234)
json.update("key_values.key", value: "value")
json.update("profiles[0].Identity", value: "UserId")
json.update("profiles[0].Email", value: "User@user.com")
json.update("profiles[0].push_token", value: "Token")
json.update("profiles[1].Identity", value: "UserId")
json.update("profiles[1].Email", value: "User@user.com")
json.update("profiles[1].push_token", value: "Token")
json.update("profiles[2].Identity", value: "UserId")
json.update("profiles[2].Email", value: "User@user.com")
json.update("profiles[2].push_token", value: "Token")
json.update("profiles[3].Identity", value: "UserId")
json.update("profiles[3].Email", value: "User@user.com")
json.update("profiles[3].push_token", value: "Token")
json.update("profiles[4].Identity", value: "UserId")
json.update("profiles[4].Email", value: "User@user.com")
json.update("profiles[4].push_token", value: "Token")
http.setRequestHeader("Content-Type", value: "{{type}}")
http.setRequestHeader("User-Agent", value: "{{user-agent}}")
http.setRequestHeader("Content-Length", value: "{{content-length}}")
var resp: CkoHttpResponse? = http.postJson3("https://domain.com/", contentType: "{{type}}", json: json)
if http.lastMethodSuccess == false {
print("\(http.lastErrorText!)")
return
}
print("\(resp!.statusCode.intValue)")
print("\(resp!.bodyStr!)")
resp = nil
}
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": [
]
}