Chilkat Online Tools

unicodeC / Support API / Incremental User Export, Cursor Based

Back to Collection Items

#include <C_CkHttpW.h>
#include <C_CkJsonObjectW.h>
#include <C_CkHttpResponseW.h>
#include <C_CkStringBuilderW.h>

void ChilkatSample(void)
    {
    HCkHttpW http;
    BOOL success;
    HCkJsonObjectW queryParams;
    HCkHttpResponseW resp;
    HCkStringBuilderW sbResponseBody;
    HCkJsonObjectW jResp;
    int respStatusCode;
    const wchar_t *name;
    const wchar_t *active;
    const wchar_t *alias;
    const wchar_t *chat_only;
    const wchar_t *created_at;
    const wchar_t *custom_role_id;
    const wchar_t *default_group_id;
    const wchar_t *details;
    const wchar_t *email;
    const wchar_t *external_id;
    const wchar_t *iana_time_zone;
    const wchar_t *id;
    const wchar_t *last_login_at;
    const wchar_t *locale;
    const wchar_t *locale_id;
    const wchar_t *moderator;
    const wchar_t *notes;
    const wchar_t *only_private_comments;
    const wchar_t *organization_id;
    const wchar_t *phone;
    const wchar_t *Proidentbc0;
    const wchar_t *Fugiat_e_b;
    const wchar_t *remote_photo_url;
    const wchar_t *report_csv;
    const wchar_t *restricted_agent;
    const wchar_t *role;
    const wchar_t *role_type;
    const wchar_t *v_shared;
    const wchar_t *shared_agent;
    const wchar_t *shared_phone_number;
    const wchar_t *signature;
    const wchar_t *suspended;
    const wchar_t *tags;
    const wchar_t *ticket_restriction;
    const wchar_t *time_zone;
    const wchar_t *two_factor_auth_enabled;
    const wchar_t *updated_at;
    const wchar_t *url;
    BOOL Culpa14b;
    const wchar_t *verified;
    int In223;
    const wchar_t *Quis20_;
    BOOL Aliquipe8;
    const wchar_t *after_cursor;
    const wchar_t *after_url;
    const wchar_t *before_cursor;
    const wchar_t *before_url;
    const wchar_t *end_of_stream;
    int i;
    int count_i;

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

    http = CkHttpW_Create();

    CkHttpW_putBasicAuth(http,TRUE);
    CkHttpW_putLogin(http,L"login");
    CkHttpW_putPassword(http,L"password");

    queryParams = CkJsonObjectW_Create();
    CkJsonObjectW_UpdateString(queryParams,L"start_time",L"<integer>");
    CkJsonObjectW_UpdateString(queryParams,L"cursor",L"<string>");
    CkJsonObjectW_UpdateString(queryParams,L"per_page",L"<integer>");

    CkHttpW_SetRequestHeader(http,L"Accept",L"application/json");

    resp = CkHttpW_QuickRequestParams(http,L"GET",L"https://example.zendesk.com/api/v2/incremental/users/cursor",queryParams);
    if (CkHttpW_getLastMethodSuccess(http) == FALSE) {
        wprintf(L"%s\n",CkHttpW_lastErrorText(http));
        CkHttpW_Dispose(http);
        CkJsonObjectW_Dispose(queryParams);
        return;
    }

    sbResponseBody = CkStringBuilderW_Create();
    CkHttpResponseW_GetBodySb(resp,sbResponseBody);

    jResp = CkJsonObjectW_Create();
    CkJsonObjectW_LoadSb(jResp,sbResponseBody);
    CkJsonObjectW_putEmitCompact(jResp,FALSE);

    wprintf(L"Response Body:\n");
    wprintf(L"%s\n",CkJsonObjectW_emit(jResp));

    respStatusCode = CkHttpResponseW_getStatusCode(resp);
    wprintf(L"Response Status Code = %d\n",respStatusCode);
    if (respStatusCode >= 400) {
        wprintf(L"Response Header:\n");
        wprintf(L"%s\n",CkHttpResponseW_header(resp));
        wprintf(L"Failed.\n");
        CkHttpResponseW_Dispose(resp);
        CkHttpW_Dispose(http);
        CkJsonObjectW_Dispose(queryParams);
        CkStringBuilderW_Dispose(sbResponseBody);
        CkJsonObjectW_Dispose(jResp);
        return;
    }

    CkHttpResponseW_Dispose(resp);

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

    // {
    //   "after_cursor": "<string>",
    //   "after_url": "<string>",
    //   "before_cursor": "<string>",
    //   "before_url": "<string>",
    //   "end_of_stream": "<boolean>",
    //   "users": [
    //     {
    //       "name": "<string>",
    //       "active": "<boolean>",
    //       "alias": "<string>",
    //       "chat_only": "<boolean>",
    //       "created_at": "<string>",
    //       "custom_role_id": "<integer>",
    //       "default_group_id": "<integer>",
    //       "details": "<string>",
    //       "email": "<string>",
    //       "external_id": "<string>",
    //       "iana_time_zone": "<string>",
    //       "id": "<integer>",
    //       "last_login_at": "<string>",
    //       "locale": "<string>",
    //       "locale_id": "<integer>",
    //       "moderator": "<boolean>",
    //       "notes": "<string>",
    //       "only_private_comments": "<boolean>",
    //       "organization_id": "<integer>",
    //       "phone": "<string>",
    //       "photo": {
    //         "proidentbc0": -29354278.707036167,
    //         "fugiat_e_b": -98816029.91228342
    //       },
    //       "remote_photo_url": "<string>",
    //       "report_csv": "<boolean>",
    //       "restricted_agent": "<boolean>",
    //       "role": "<string>",
    //       "role_type": "<integer>",
    //       "shared": "<boolean>",
    //       "shared_agent": "<boolean>",
    //       "shared_phone_number": "<boolean>",
    //       "signature": "<string>",
    //       "suspended": "<boolean>",
    //       "tags": "<array>",
    //       "ticket_restriction": "<string>",
    //       "time_zone": "<string>",
    //       "two_factor_auth_enabled": "<boolean>",
    //       "updated_at": "<string>",
    //       "url": "<string>",
    //       "user_fields": {
    //         "culpa14b": true
    //       },
    //       "verified": "<boolean>"
    //     },
    //     {
    //       "name": "<string>",
    //       "active": "<boolean>",
    //       "alias": "<string>",
    //       "chat_only": "<boolean>",
    //       "created_at": "<string>",
    //       "custom_role_id": "<integer>",
    //       "default_group_id": "<integer>",
    //       "details": "<string>",
    //       "email": "<string>",
    //       "external_id": "<string>",
    //       "iana_time_zone": "<string>",
    //       "id": "<integer>",
    //       "last_login_at": "<string>",
    //       "locale": "<string>",
    //       "locale_id": "<integer>",
    //       "moderator": "<boolean>",
    //       "notes": "<string>",
    //       "only_private_comments": "<boolean>",
    //       "organization_id": "<integer>",
    //       "phone": "<string>",
    //       "photo": {
    //         "in223": -78887847,
    //         "quis20_": 61629027.23513341
    //       },
    //       "remote_photo_url": "<string>",
    //       "report_csv": "<boolean>",
    //       "restricted_agent": "<boolean>",
    //       "role": "<string>",
    //       "role_type": "<integer>",
    //       "shared": "<boolean>",
    //       "shared_agent": "<boolean>",
    //       "shared_phone_number": "<boolean>",
    //       "signature": "<string>",
    //       "suspended": "<boolean>",
    //       "tags": "<array>",
    //       "ticket_restriction": "<string>",
    //       "time_zone": "<string>",
    //       "two_factor_auth_enabled": "<boolean>",
    //       "updated_at": "<string>",
    //       "url": "<string>",
    //       "user_fields": {
    //         "aliquipe8": false
    //       },
    //       "verified": "<boolean>"
    //     }
    //   ]
    // }

    // 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.

    after_cursor = CkJsonObjectW_stringOf(jResp,L"after_cursor");
    after_url = CkJsonObjectW_stringOf(jResp,L"after_url");
    before_cursor = CkJsonObjectW_stringOf(jResp,L"before_cursor");
    before_url = CkJsonObjectW_stringOf(jResp,L"before_url");
    end_of_stream = CkJsonObjectW_stringOf(jResp,L"end_of_stream");
    i = 0;
    count_i = CkJsonObjectW_SizeOfArray(jResp,L"users");
    while (i < count_i) {
        CkJsonObjectW_putI(jResp,i);
        name = CkJsonObjectW_stringOf(jResp,L"users[i].name");
        active = CkJsonObjectW_stringOf(jResp,L"users[i].active");
        alias = CkJsonObjectW_stringOf(jResp,L"users[i].alias");
        chat_only = CkJsonObjectW_stringOf(jResp,L"users[i].chat_only");
        created_at = CkJsonObjectW_stringOf(jResp,L"users[i].created_at");
        custom_role_id = CkJsonObjectW_stringOf(jResp,L"users[i].custom_role_id");
        default_group_id = CkJsonObjectW_stringOf(jResp,L"users[i].default_group_id");
        details = CkJsonObjectW_stringOf(jResp,L"users[i].details");
        email = CkJsonObjectW_stringOf(jResp,L"users[i].email");
        external_id = CkJsonObjectW_stringOf(jResp,L"users[i].external_id");
        iana_time_zone = CkJsonObjectW_stringOf(jResp,L"users[i].iana_time_zone");
        id = CkJsonObjectW_stringOf(jResp,L"users[i].id");
        last_login_at = CkJsonObjectW_stringOf(jResp,L"users[i].last_login_at");
        locale = CkJsonObjectW_stringOf(jResp,L"users[i].locale");
        locale_id = CkJsonObjectW_stringOf(jResp,L"users[i].locale_id");
        moderator = CkJsonObjectW_stringOf(jResp,L"users[i].moderator");
        notes = CkJsonObjectW_stringOf(jResp,L"users[i].notes");
        only_private_comments = CkJsonObjectW_stringOf(jResp,L"users[i].only_private_comments");
        organization_id = CkJsonObjectW_stringOf(jResp,L"users[i].organization_id");
        phone = CkJsonObjectW_stringOf(jResp,L"users[i].phone");
        Proidentbc0 = CkJsonObjectW_stringOf(jResp,L"users[i].photo.proidentbc0");
        Fugiat_e_b = CkJsonObjectW_stringOf(jResp,L"users[i].photo.fugiat_e_b");
        remote_photo_url = CkJsonObjectW_stringOf(jResp,L"users[i].remote_photo_url");
        report_csv = CkJsonObjectW_stringOf(jResp,L"users[i].report_csv");
        restricted_agent = CkJsonObjectW_stringOf(jResp,L"users[i].restricted_agent");
        role = CkJsonObjectW_stringOf(jResp,L"users[i].role");
        role_type = CkJsonObjectW_stringOf(jResp,L"users[i].role_type");
        v_shared = CkJsonObjectW_stringOf(jResp,L"users[i].shared");
        shared_agent = CkJsonObjectW_stringOf(jResp,L"users[i].shared_agent");
        shared_phone_number = CkJsonObjectW_stringOf(jResp,L"users[i].shared_phone_number");
        signature = CkJsonObjectW_stringOf(jResp,L"users[i].signature");
        suspended = CkJsonObjectW_stringOf(jResp,L"users[i].suspended");
        tags = CkJsonObjectW_stringOf(jResp,L"users[i].tags");
        ticket_restriction = CkJsonObjectW_stringOf(jResp,L"users[i].ticket_restriction");
        time_zone = CkJsonObjectW_stringOf(jResp,L"users[i].time_zone");
        two_factor_auth_enabled = CkJsonObjectW_stringOf(jResp,L"users[i].two_factor_auth_enabled");
        updated_at = CkJsonObjectW_stringOf(jResp,L"users[i].updated_at");
        url = CkJsonObjectW_stringOf(jResp,L"users[i].url");
        Culpa14b = CkJsonObjectW_BoolOf(jResp,L"users[i].user_fields.culpa14b");
        verified = CkJsonObjectW_stringOf(jResp,L"users[i].verified");
        In223 = CkJsonObjectW_IntOf(jResp,L"users[i].photo.in223");
        Quis20_ = CkJsonObjectW_stringOf(jResp,L"users[i].photo.quis20_");
        Aliquipe8 = CkJsonObjectW_BoolOf(jResp,L"users[i].user_fields.aliquipe8");
        i = i + 1;
    }



    CkHttpW_Dispose(http);
    CkJsonObjectW_Dispose(queryParams);
    CkStringBuilderW_Dispose(sbResponseBody);
    CkJsonObjectW_Dispose(jResp);

    }

Curl Command

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

Postman Collection Item JSON

{
  "name": "Incremental User Export, Cursor Based",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "url": {
      "raw": "{{baseUrl}}/api/v2/incremental/users/cursor?start_time=<integer>&cursor=<string>&per_page=<integer>",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "api",
        "v2",
        "incremental",
        "users",
        "cursor"
      ],
      "query": [
        {
          "key": "start_time",
          "value": "<integer>",
          "description": "(Required) The time to start the incremental export from"
        },
        {
          "key": "cursor",
          "value": "<string>",
          "description": "The cursor pointer to work with for all subsequent exports after the initial request"
        },
        {
          "key": "per_page",
          "value": "<integer>",
          "description": "The number of records to return per page"
        }
      ]
    },
    "description": "#### Allowed For\n\n * Admins\n\n#### Sideloading\n\nSee [Users 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/users/cursor?start_time=<integer>&cursor=<string>&per_page=<integer>",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v2",
            "incremental",
            "users",
            "cursor"
          ],
          "query": [
            {
              "key": "start_time",
              "value": "<integer>",
              "description": "(Required) The time to start the incremental export from"
            },
            {
              "key": "cursor",
              "value": "<string>",
              "description": "The cursor pointer to work with for all subsequent exports after the initial request"
            },
            {
              "key": "per_page",
              "value": "<integer>",
              "description": "The number of records to return per page"
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"after_cursor\": \"<string>\",\n  \"after_url\": \"<string>\",\n  \"before_cursor\": \"<string>\",\n  \"before_url\": \"<string>\",\n  \"end_of_stream\": \"<boolean>\",\n  \"users\": [\n    {\n      \"name\": \"<string>\",\n      \"active\": \"<boolean>\",\n      \"alias\": \"<string>\",\n      \"chat_only\": \"<boolean>\",\n      \"created_at\": \"<string>\",\n      \"custom_role_id\": \"<integer>\",\n      \"default_group_id\": \"<integer>\",\n      \"details\": \"<string>\",\n      \"email\": \"<string>\",\n      \"external_id\": \"<string>\",\n      \"iana_time_zone\": \"<string>\",\n      \"id\": \"<integer>\",\n      \"last_login_at\": \"<string>\",\n      \"locale\": \"<string>\",\n      \"locale_id\": \"<integer>\",\n      \"moderator\": \"<boolean>\",\n      \"notes\": \"<string>\",\n      \"only_private_comments\": \"<boolean>\",\n      \"organization_id\": \"<integer>\",\n      \"phone\": \"<string>\",\n      \"photo\": {\n        \"proidentbc0\": -29354278.707036167,\n        \"fugiat_e_b\": -98816029.91228342\n      },\n      \"remote_photo_url\": \"<string>\",\n      \"report_csv\": \"<boolean>\",\n      \"restricted_agent\": \"<boolean>\",\n      \"role\": \"<string>\",\n      \"role_type\": \"<integer>\",\n      \"shared\": \"<boolean>\",\n      \"shared_agent\": \"<boolean>\",\n      \"shared_phone_number\": \"<boolean>\",\n      \"signature\": \"<string>\",\n      \"suspended\": \"<boolean>\",\n      \"tags\": \"<array>\",\n      \"ticket_restriction\": \"<string>\",\n      \"time_zone\": \"<string>\",\n      \"two_factor_auth_enabled\": \"<boolean>\",\n      \"updated_at\": \"<string>\",\n      \"url\": \"<string>\",\n      \"user_fields\": {\n        \"culpa14b\": true\n      },\n      \"verified\": \"<boolean>\"\n    },\n    {\n      \"name\": \"<string>\",\n      \"active\": \"<boolean>\",\n      \"alias\": \"<string>\",\n      \"chat_only\": \"<boolean>\",\n      \"created_at\": \"<string>\",\n      \"custom_role_id\": \"<integer>\",\n      \"default_group_id\": \"<integer>\",\n      \"details\": \"<string>\",\n      \"email\": \"<string>\",\n      \"external_id\": \"<string>\",\n      \"iana_time_zone\": \"<string>\",\n      \"id\": \"<integer>\",\n      \"last_login_at\": \"<string>\",\n      \"locale\": \"<string>\",\n      \"locale_id\": \"<integer>\",\n      \"moderator\": \"<boolean>\",\n      \"notes\": \"<string>\",\n      \"only_private_comments\": \"<boolean>\",\n      \"organization_id\": \"<integer>\",\n      \"phone\": \"<string>\",\n      \"photo\": {\n        \"in223\": -78887847,\n        \"quis20_\": 61629027.23513341\n      },\n      \"remote_photo_url\": \"<string>\",\n      \"report_csv\": \"<boolean>\",\n      \"restricted_agent\": \"<boolean>\",\n      \"role\": \"<string>\",\n      \"role_type\": \"<integer>\",\n      \"shared\": \"<boolean>\",\n      \"shared_agent\": \"<boolean>\",\n      \"shared_phone_number\": \"<boolean>\",\n      \"signature\": \"<string>\",\n      \"suspended\": \"<boolean>\",\n      \"tags\": \"<array>\",\n      \"ticket_restriction\": \"<string>\",\n      \"time_zone\": \"<string>\",\n      \"two_factor_auth_enabled\": \"<boolean>\",\n      \"updated_at\": \"<string>\",\n      \"url\": \"<string>\",\n      \"user_fields\": {\n        \"aliquipe8\": false\n      },\n      \"verified\": \"<boolean>\"\n    }\n  ]\n}"
    }
  ]
}