Objective-C / CleverTap API / Test Webhook Payload
Back to Collection Items
#import <CkoHttp.h>
#import <CkoJsonObject.h>
#import <CkoHttpResponse.h>
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkoHttp *http = [[CkoHttp alloc] init];
BOOL success;
// 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"
// }
// ]
// }
CkoJsonObject *json = [[CkoJsonObject alloc] init];
[json UpdateBool: @"is_test" value: YES];
[json UpdateInt: @"targetId" value: [NSNumber numberWithInt: 1234]];
[json UpdateString: @"key_values.key" value: @"value"];
[json UpdateString: @"profiles[0].Identity" value: @"UserId"];
[json UpdateString: @"profiles[0].Email" value: @"User@user.com"];
[json UpdateString: @"profiles[0].push_token" value: @"Token"];
[json UpdateString: @"profiles[1].Identity" value: @"UserId"];
[json UpdateString: @"profiles[1].Email" value: @"User@user.com"];
[json UpdateString: @"profiles[1].push_token" value: @"Token"];
[json UpdateString: @"profiles[2].Identity" value: @"UserId"];
[json UpdateString: @"profiles[2].Email" value: @"User@user.com"];
[json UpdateString: @"profiles[2].push_token" value: @"Token"];
[json UpdateString: @"profiles[3].Identity" value: @"UserId"];
[json UpdateString: @"profiles[3].Email" value: @"User@user.com"];
[json UpdateString: @"profiles[3].push_token" value: @"Token"];
[json UpdateString: @"profiles[4].Identity" value: @"UserId"];
[json UpdateString: @"profiles[4].Email" value: @"User@user.com"];
[json UpdateString: @"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}}"];
CkoHttpResponse *resp = [http PostJson3: @"https://domain.com/" contentType: @"{{type}}" json: json];
if (http.LastMethodSuccess == NO) {
NSLog(@"%@",http.LastErrorText);
return;
}
NSLog(@"%d",[resp.StatusCode intValue]);
NSLog(@"%@",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": [
]
}