Chilkat Online Tools

C / Support API / Incremental Organization Export

Back to Collection Items

#include <C_CkHttp.h>
#include <C_CkJsonObject.h>
#include <C_CkHttpResponse.h>
#include <C_CkStringBuilder.h>

void ChilkatSample(void)
    {
    HCkHttp http;
    BOOL success;
    HCkJsonObject queryParams;
    HCkHttpResponse resp;
    HCkStringBuilder sbResponseBody;
    HCkJsonObject jResp;
    int respStatusCode;
    const char *created_at;
    const char *details;
    const char *external_id;
    const char *group_id;
    const char *id;
    const char *name;
    const char *notes;
    const char *Et_37f;
    const char *Ea_0;
    const char *Esse_c9;
    const char *shared_comments;
    const char *shared_tickets;
    const char *updated_at;
    const char *url;
    const char *Magna_6d_;
    const char *Nostrud_b;
    int j;
    int count_j;
    const char *strVal;
    const char *count;
    const char *end_of_stream;
    const char *end_time;
    const char *next_page;
    int i;
    int count_i;

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

    http = CkHttp_Create();

    CkHttp_putBasicAuth(http,TRUE);
    CkHttp_putLogin(http,"login");
    CkHttp_putPassword(http,"password");

    queryParams = CkJsonObject_Create();
    CkJsonObject_UpdateString(queryParams,"start_time","<integer>");

    CkHttp_SetRequestHeader(http,"Accept","application/json");

    resp = CkHttp_QuickRequestParams(http,"GET","https://example.zendesk.com/api/v2/incremental/organizations",queryParams);
    if (CkHttp_getLastMethodSuccess(http) == FALSE) {
        printf("%s\n",CkHttp_lastErrorText(http));
        CkHttp_Dispose(http);
        CkJsonObject_Dispose(queryParams);
        return;
    }

    sbResponseBody = CkStringBuilder_Create();
    CkHttpResponse_GetBodySb(resp,sbResponseBody);

    jResp = CkJsonObject_Create();
    CkJsonObject_LoadSb(jResp,sbResponseBody);
    CkJsonObject_putEmitCompact(jResp,FALSE);

    printf("Response Body:\n");
    printf("%s\n",CkJsonObject_emit(jResp));

    respStatusCode = CkHttpResponse_getStatusCode(resp);
    printf("Response Status Code = %d\n",respStatusCode);
    if (respStatusCode >= 400) {
        printf("Response Header:\n");
        printf("%s\n",CkHttpResponse_header(resp));
        printf("Failed.\n");
        CkHttpResponse_Dispose(resp);
        CkHttp_Dispose(http);
        CkJsonObject_Dispose(queryParams);
        CkStringBuilder_Dispose(sbResponseBody);
        CkJsonObject_Dispose(jResp);
        return;
    }

    CkHttpResponse_Dispose(resp);

    // Sample JSON response:
    // (Sample code for parsing the JSON response is shown below)

    // {
    //   "count": "<integer>",
    //   "end_of_stream": "<boolean>",
    //   "end_time": "<integer>",
    //   "next_page": "<string>",
    //   "organizations": [
    //     {
    //       "created_at": "<string>",
    //       "details": "<string>",
    //       "domain_names": [
    //         "<string>",
    //         "<string>"
    //       ],
    //       "external_id": "<string>",
    //       "group_id": "<integer>",
    //       "id": "<integer>",
    //       "name": "<string>",
    //       "notes": "<string>",
    //       "organization_fields": {
    //         "et_37f": "<string>",
    //         "ea_0": "<string>",
    //         "esse_c9": "<string>"
    //       },
    //       "shared_comments": "<boolean>",
    //       "shared_tickets": "<boolean>",
    //       "tags": [
    //         "<string>",
    //         "<string>"
    //       ],
    //       "updated_at": "<string>",
    //       "url": "<string>"
    //     },
    //     {
    //       "created_at": "<string>",
    //       "details": "<string>",
    //       "domain_names": [
    //         "<string>",
    //         "<string>"
    //       ],
    //       "external_id": "<string>",
    //       "group_id": "<integer>",
    //       "id": "<integer>",
    //       "name": "<string>",
    //       "notes": "<string>",
    //       "organization_fields": {
    //         "magna_6d_": "<string>",
    //         "nostrud_b": "<string>"
    //       },
    //       "shared_comments": "<boolean>",
    //       "shared_tickets": "<boolean>",
    //       "tags": [
    //         "<string>",
    //         "<string>"
    //       ],
    //       "updated_at": "<string>",
    //       "url": "<string>"
    //     }
    //   ]
    // }

    // Sample code for parsing the JSON response...
    // Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code

    // Chilkat functions returning "const char *" return a pointer to temporary internal memory owned and managed by Chilkat.

    count = CkJsonObject_stringOf(jResp,"count");
    end_of_stream = CkJsonObject_stringOf(jResp,"end_of_stream");
    end_time = CkJsonObject_stringOf(jResp,"end_time");
    next_page = CkJsonObject_stringOf(jResp,"next_page");
    i = 0;
    count_i = CkJsonObject_SizeOfArray(jResp,"organizations");
    while (i < count_i) {
        CkJsonObject_putI(jResp,i);
        created_at = CkJsonObject_stringOf(jResp,"organizations[i].created_at");
        details = CkJsonObject_stringOf(jResp,"organizations[i].details");
        external_id = CkJsonObject_stringOf(jResp,"organizations[i].external_id");
        group_id = CkJsonObject_stringOf(jResp,"organizations[i].group_id");
        id = CkJsonObject_stringOf(jResp,"organizations[i].id");
        name = CkJsonObject_stringOf(jResp,"organizations[i].name");
        notes = CkJsonObject_stringOf(jResp,"organizations[i].notes");
        Et_37f = CkJsonObject_stringOf(jResp,"organizations[i].organization_fields.et_37f");
        Ea_0 = CkJsonObject_stringOf(jResp,"organizations[i].organization_fields.ea_0");
        Esse_c9 = CkJsonObject_stringOf(jResp,"organizations[i].organization_fields.esse_c9");
        shared_comments = CkJsonObject_stringOf(jResp,"organizations[i].shared_comments");
        shared_tickets = CkJsonObject_stringOf(jResp,"organizations[i].shared_tickets");
        updated_at = CkJsonObject_stringOf(jResp,"organizations[i].updated_at");
        url = CkJsonObject_stringOf(jResp,"organizations[i].url");
        Magna_6d_ = CkJsonObject_stringOf(jResp,"organizations[i].organization_fields.magna_6d_");
        Nostrud_b = CkJsonObject_stringOf(jResp,"organizations[i].organization_fields.nostrud_b");
        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"organizations[i].domain_names");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            strVal = CkJsonObject_stringOf(jResp,"organizations[i].domain_names[j]");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"organizations[i].tags");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            strVal = CkJsonObject_stringOf(jResp,"organizations[i].tags[j]");
            j = j + 1;
        }

        i = i + 1;
    }



    CkHttp_Dispose(http);
    CkJsonObject_Dispose(queryParams);
    CkStringBuilder_Dispose(sbResponseBody);
    CkJsonObject_Dispose(jResp);

    }

Curl Command

curl  -u login:password -G -d "start_time=%3Cinteger%3E"
	-H "Accept: application/json"
https://example.zendesk.com/api/v2/incremental/organizations

Postman Collection Item JSON

{
  "name": "Incremental Organization Export",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "url": {
      "raw": "{{baseUrl}}/api/v2/incremental/organizations?start_time=<integer>",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "api",
        "v2",
        "incremental",
        "organizations"
      ],
      "query": [
        {
          "key": "start_time",
          "value": "<integer>",
          "description": "(Required) The time to start the incremental export from"
        }
      ]
    },
    "description": "#### Allowed For\n\n * Admins\n\n#### Sideloading\n\nSee [Organizations sideloads](/documentation/ticketing/using-the-zendesk-api/side_loading/#supported-endpoints).\n"
  },
  "response": [
    {
      "name": "Success response",
      "originalRequest": {
        "method": "GET",
        "header": [
          {
            "description": "Added as a part of security scheme: basic",
            "key": "Authorization",
            "value": "Basic <credentials>"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/v2/incremental/organizations?start_time=<integer>",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v2",
            "incremental",
            "organizations"
          ],
          "query": [
            {
              "key": "start_time",
              "value": "<integer>",
              "description": "(Required) The time to start the incremental export from"
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"count\": \"<integer>\",\n  \"end_of_stream\": \"<boolean>\",\n  \"end_time\": \"<integer>\",\n  \"next_page\": \"<string>\",\n  \"organizations\": [\n    {\n      \"created_at\": \"<string>\",\n      \"details\": \"<string>\",\n      \"domain_names\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"external_id\": \"<string>\",\n      \"group_id\": \"<integer>\",\n      \"id\": \"<integer>\",\n      \"name\": \"<string>\",\n      \"notes\": \"<string>\",\n      \"organization_fields\": {\n        \"et_37f\": \"<string>\",\n        \"ea_0\": \"<string>\",\n        \"esse_c9\": \"<string>\"\n      },\n      \"shared_comments\": \"<boolean>\",\n      \"shared_tickets\": \"<boolean>\",\n      \"tags\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"updated_at\": \"<string>\",\n      \"url\": \"<string>\"\n    },\n    {\n      \"created_at\": \"<string>\",\n      \"details\": \"<string>\",\n      \"domain_names\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"external_id\": \"<string>\",\n      \"group_id\": \"<integer>\",\n      \"id\": \"<integer>\",\n      \"name\": \"<string>\",\n      \"notes\": \"<string>\",\n      \"organization_fields\": {\n        \"magna_6d_\": \"<string>\",\n        \"nostrud_b\": \"<string>\"\n      },\n      \"shared_comments\": \"<boolean>\",\n      \"shared_tickets\": \"<boolean>\",\n      \"tags\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"updated_at\": \"<string>\",\n      \"url\": \"<string>\"\n    }\n  ]\n}"
    }
  ]
}