Chilkat Online Tools

delphiAx / CleverTap API / Test Webhook Payload

Back to Collection Items

var
http: TChilkatHttp;
success: Integer;
json: TChilkatJsonObject;
resp: IChilkatHttpResponse;

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

http := TChilkatHttp.Create(Self);

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

json := TChilkatJsonObject.Create(Self);
json.UpdateBool('is_test',1);
json.UpdateInt('targetId',1234);
json.UpdateString('key_values.key','value');
json.UpdateString('profiles[0].Identity','UserId');
json.UpdateString('profiles[0].Email','User@user.com');
json.UpdateString('profiles[0].push_token','Token');
json.UpdateString('profiles[1].Identity','UserId');
json.UpdateString('profiles[1].Email','User@user.com');
json.UpdateString('profiles[1].push_token','Token');
json.UpdateString('profiles[2].Identity','UserId');
json.UpdateString('profiles[2].Email','User@user.com');
json.UpdateString('profiles[2].push_token','Token');
json.UpdateString('profiles[3].Identity','UserId');
json.UpdateString('profiles[3].Email','User@user.com');
json.UpdateString('profiles[3].push_token','Token');
json.UpdateString('profiles[4].Identity','UserId');
json.UpdateString('profiles[4].Email','User@user.com');
json.UpdateString('profiles[4].push_token','Token');

http.SetRequestHeader('Content-Type','{{type}}');
http.SetRequestHeader('User-Agent','{{user-agent}}');
http.SetRequestHeader('Content-Length','{{content-length}}');

resp := http.PostJson3('https://domain.com/','{{type}}',json.ControlInterface);
if (http.LastMethodSuccess = 0) then
  begin
    Memo1.Lines.Add(http.LastErrorText);
    Exit;
  end;

Memo1.Lines.Add(IntToStr(resp.StatusCode));
Memo1.Lines.Add(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": [
  ]
}