Back to Collection Items
        #include <C_CkHttp.h>
#include <C_CkJsonObject.h>
#include <C_CkHttpResponse.h>
void ChilkatSample(void)
    {
    HCkHttp http;
    BOOL success;
    HCkJsonObject queryParams;
    HCkHttpResponse resp;
    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.
    http = CkHttp_Create();
    queryParams = CkJsonObject_Create();
    CkJsonObject_UpdateString(queryParams,"job_id","{{job_id}}");
    // Adds the "Authorization: Bearer <access_token>" header.
    CkHttp_putAuthToken(http,"<access_token>");
    resp = CkHttpResponse_Create();
    success = CkHttp_HttpParams(http,"GET","https://domain.com/crm/v2/Solutions/actions/mass_update",queryParams,resp);
    if (success == FALSE) {
        printf("%s\n",CkHttp_lastErrorText(http));
        CkHttp_Dispose(http);
        CkJsonObject_Dispose(queryParams);
        CkHttpResponse_Dispose(resp);
        return;
    }
    printf("%d\n",CkHttpResponse_getStatusCode(resp));
    printf("%s\n",CkHttpResponse_bodyStr(resp));
    CkHttp_Dispose(http);
    CkJsonObject_Dispose(queryParams);
    CkHttpResponse_Dispose(resp);
    }
        Curl Command
        curl -G -d "job_id=%7B%7Bjob_id%7D%7D"
	-H "Authorization: Bearer <access_token>"
https://domain.com/crm/v2/Solutions/actions/mass_update
        Postman Collection Item JSON
        {
  "name": "Solutions",
  "request": {
    "auth": {
      "type": "bearer",
      "bearer": [
        {
          "key": "token",
          "value": "{{access-token}}",
          "type": "string"
        }
      ]
    },
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{api-domain}}/crm/v2/Solutions/actions/mass_update?job_id={{job_id}}",
      "host": [
        "{{api-domain}}"
      ],
      "path": [
        "crm",
        "v2",
        "Solutions",
        "actions",
        "mass_update"
      ],
      "query": [
        {
          "key": "job_id",
          "value": "{{job_id}}"
        }
      ]
    },
    "description": "To get the status of the mass update job scheduled previously."
  },
  "response": [
  ]
}