Chilkat Online Tools

C# / CleverTap API / Partial API

Back to Collection Items

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

Chilkat.Http http = new Chilkat.Http();
bool success;

Chilkat.JsonObject queryParams = new Chilkat.JsonObject();
queryParams.UpdateString("req_id","{{reqid}}");

http.SetRequestHeader("X-CleverTap-Passcode","{{passcode}}");
http.SetRequestHeader("X-CleverTap-Account-Id","{{id}}");
http.SetRequestHeader("Content-Type","{{type}}");

Chilkat.HttpResponse resp = http.QuickRequestParams("GET","https://api.clevertap.com/1/counts/trends.json",queryParams);
if (http.LastMethodSuccess == false) {
    Debug.WriteLine(http.LastErrorText);
    return;
}

Debug.WriteLine(Convert.ToString(resp.StatusCode));
Debug.WriteLine(resp.BodyStr);

Curl Command

curl -G -d "req_id=%7B%7Breqid%7D%7D"
	-H "X-CleverTap-Account-Id: {{id}}"
	-H "X-CleverTap-Passcode: {{passcode}}"
	-H "Content-Type: {{type}}"
https://api.clevertap.com/1/counts/trends.json

Postman Collection Item JSON

{
  "name": "Partial API",
  "event": [
    {
      "listen": "test",
      "script": {
        "type": "text/javascript",
        "exec": [
          "var result = JSON.parse(responseBody);",
          "pm.globals.set(\"req_id\",result.req_id);"
        ]
      }
    }
  ],
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "X-CleverTap-Account-Id",
        "value": "{{id}}"
      },
      {
        "key": "X-CleverTap-Passcode",
        "value": "{{passcode}}"
      },
      {
        "key": "Content-Type",
        "value": "{{type}}"
      }
    ],
    "url": {
      "raw": "https://api.clevertap.com/1/counts/trends.json?req_id={{reqid}}",
      "protocol": "https",
      "host": [
        "api",
        "clevertap",
        "com"
      ],
      "path": [
        "1",
        "counts",
        "trends.json"
      ],
      "query": [
        {
          "key": "req_id",
          "value": "{{reqid}}"
        }
      ]
    }
  },
  "response": [
  ]
}