Chilkat Online Tools

unicodeC / Squadcast API V3 / Get All Users

Back to Collection Items

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

void ChilkatSample(void)
    {
    HCkHttpW http;
    BOOL success;
    HCkStringBuilderW sbResponseBody;
    HCkJsonObjectW jResp;
    int respStatusCode;
    const wchar_t *id;
    const wchar_t *first_name;
    const wchar_t *last_name;
    const wchar_t *email;
    const wchar_t *Dial_code;
    const wchar_t *Phone_number;
    BOOL email_verified;
    const wchar_t *time_zone;
    const wchar_t *title;
    const wchar_t *bio;
    BOOL user_image;
    const wchar_t *role_id;
    const wchar_t *role;
    const wchar_t *secondary_emails;
    int j;
    int count_j;
    const wchar_t *v_type;
    int time;
    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_SetRequestHeader(http,L"Authorization",L"");

    sbResponseBody = CkStringBuilderW_Create();
    success = CkHttpW_QuickGetSb(http,L"https://api.squadcast.com/v3/users",sbResponseBody);
    if (success == FALSE) {
        wprintf(L"%s\n",CkHttpW_lastErrorText(http));
        CkHttpW_Dispose(http);
        CkStringBuilderW_Dispose(sbResponseBody);
        return;
    }

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

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

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

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

    // {
    //   "data": [
    //     {
    //       "id": "5d81d9187000fb6b9def7e31",
    //       "first_name": "Manigandan",
    //       "last_name": "Dharmalingam",
    //       "email": "manigandan@squadcast.com",
    //       "contact": {
    //         "dial_code": "+91",
    //         "phone_number": "9578628779"
    //       },
    //       "secondary_emails": [
    //       ],
    //       "email_verified": true,
    //       "time_zone": "Asia/Calcutta",
    //       "title": "",
    //       "bio": "",
    //       "notification_rules": [
    //         {
    //           "type": "Email",
    //           "time": 0
    //         },
    //         {
    //           "type": "Push",
    //           "time": 0
    //         },
    //         {
    //           "type": "SMS",
    //           "time": 1
    //         },
    //         {
    //           "type": "Phone",
    //           "time": 2
    //         }
    //       ],
    //       "user_image": false,
    //       "role_id": "5a425b383c36823b3ed91fb4",
    //       "role": "account_owner"
    //     },
    //     {
    //       "id": "5d91d262a2c85fa24a27d4d7",
    //       "first_name": "Akilan",
    //       "last_name": "Elango",
    //       "email": "akilan@squadcast.com",
    //       "contact": {
    //         "dial_code": "",
    //         "phone_number": ""
    //       },
    //       "secondary_emails": null,
    //       "email_verified": false,
    //       "time_zone": "",
    //       "title": "",
    //       "bio": "",
    //       "notification_rules": [
    //         {
    //           "type": "Email",
    //           "time": 0
    //         },
    //         {
    //           "type": "Push",
    //           "time": 0
    //         },
    //         {
    //           "type": "SMS",
    //           "time": 1
    //         },
    //         {
    //           "type": "Phone",
    //           "time": 2
    //         }
    //       ],
    //       "user_image": false,
    //       "role_id": "5a425b383c36823b3ed91fb5",
    //       "role": "admin"
    //     },
    //     {
    //       "id": "5d91d262a2c85fa24a27d4da",
    //       "first_name": "Madhu",
    //       "last_name": "DS Frontend",
    //       "email": "madhu@squadcast.com",
    //       "contact": {
    //         "dial_code": "",
    //         "phone_number": ""
    //       },
    //       "secondary_emails": null,
    //       "email_verified": false,
    //       "time_zone": "",
    //       "title": "",
    //       "bio": "",
    //       "notification_rules": [
    //         {
    //           "type": "Email",
    //           "time": 0
    //         },
    //         {
    //           "type": "Push",
    //           "time": 0
    //         },
    //         {
    //           "type": "SMS",
    //           "time": 1
    //         },
    //         {
    //           "type": "Phone",
    //           "time": 2
    //         }
    //       ],
    //       "user_image": false,
    //       "role_id": "5a425b383c36823b3ed91fb6",
    //       "role": "user"
    //     }
    //   ]
    // }

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

    i = 0;
    count_i = CkJsonObjectW_SizeOfArray(jResp,L"data");
    while (i < count_i) {
        CkJsonObjectW_putI(jResp,i);
        id = CkJsonObjectW_stringOf(jResp,L"data[i].id");
        first_name = CkJsonObjectW_stringOf(jResp,L"data[i].first_name");
        last_name = CkJsonObjectW_stringOf(jResp,L"data[i].last_name");
        email = CkJsonObjectW_stringOf(jResp,L"data[i].email");
        Dial_code = CkJsonObjectW_stringOf(jResp,L"data[i].contact.dial_code");
        Phone_number = CkJsonObjectW_stringOf(jResp,L"data[i].contact.phone_number");
        email_verified = CkJsonObjectW_BoolOf(jResp,L"data[i].email_verified");
        time_zone = CkJsonObjectW_stringOf(jResp,L"data[i].time_zone");
        title = CkJsonObjectW_stringOf(jResp,L"data[i].title");
        bio = CkJsonObjectW_stringOf(jResp,L"data[i].bio");
        user_image = CkJsonObjectW_BoolOf(jResp,L"data[i].user_image");
        role_id = CkJsonObjectW_stringOf(jResp,L"data[i].role_id");
        role = CkJsonObjectW_stringOf(jResp,L"data[i].role");
        secondary_emails = CkJsonObjectW_stringOf(jResp,L"data[i].secondary_emails");
        j = 0;
        count_j = CkJsonObjectW_SizeOfArray(jResp,L"data[i].secondary_emails");
        while (j < count_j) {
            CkJsonObjectW_putJ(jResp,j);
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObjectW_SizeOfArray(jResp,L"data[i].notification_rules");
        while (j < count_j) {
            CkJsonObjectW_putJ(jResp,j);
            v_type = CkJsonObjectW_stringOf(jResp,L"data[i].notification_rules[j].type");
            time = CkJsonObjectW_IntOf(jResp,L"data[i].notification_rules[j].time");
            j = j + 1;
        }

        i = i + 1;
    }



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

    }

Curl Command

curl -X GET
	-H "Authorization: "
https://api.squadcast.com/v3/users

Postman Collection Item JSON

{
  "name": "Get All Users",
  "request": {
    "auth": {
      "type": "noauth"
    },
    "method": "GET",
    "header": [
      {
        "key": "Authorization",
        "value": ""
      }
    ],
    "url": {
      "raw": "{{baseUrl}}/users",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "users"
      ]
    },
    "description": "Returns all the users of the organization.\nRequires `access_token` as a `Bearer {{token}}` in the `Authorization` header with `read` scope.\n        "
  },
  "response": [
    {
      "name": "Forbidden",
      "originalRequest": {
        "method": "GET",
        "header": [
        ],
        "url": {
          "raw": "{{baseUrl}}/users",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "users"
          ]
        }
      },
      "status": "Forbidden",
      "code": 403,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n \"meta\": {\n  \"status\": \"<integer>\",\n  \"error_message\": \"<string>\"\n }\n}"
    },
    {
      "name": "Internal Server Error",
      "originalRequest": {
        "method": "GET",
        "header": [
        ],
        "url": {
          "raw": "{{baseUrl}}/users",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "users"
          ]
        }
      },
      "status": "Internal Server Error",
      "code": 500,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n \"meta\": {\n  \"status\": \"<integer>\",\n  \"error_message\": \"<string>\"\n }\n}"
    },
    {
      "name": "OK",
      "originalRequest": {
        "method": "GET",
        "header": [
        ],
        "url": {
          "raw": "{{baseUrl}}/users",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "users"
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n \"data\": [\n  {\n   \"id\": \"5d81d9187000fb6b9def7e31\",\n   \"first_name\": \"Manigandan\",\n   \"last_name\": \"Dharmalingam\",\n   \"email\": \"manigandan@squadcast.com\",\n   \"contact\": {\n    \"dial_code\": \"+91\",\n    \"phone_number\": \"9578628779\"\n   },\n   \"secondary_emails\": [],\n   \"email_verified\": true,\n   \"time_zone\": \"Asia/Calcutta\",\n   \"title\": \"\",\n   \"bio\": \"\",\n   \"notification_rules\": [\n    {\n     \"type\": \"Email\",\n     \"time\": 0\n    },\n    {\n     \"type\": \"Push\",\n     \"time\": 0\n    },\n    {\n     \"type\": \"SMS\",\n     \"time\": 1\n    },\n    {\n     \"type\": \"Phone\",\n     \"time\": 2\n    }\n   ],\n   \"user_image\": false,\n   \"role_id\": \"5a425b383c36823b3ed91fb4\",\n   \"role\": \"account_owner\"\n  },\n  {\n   \"id\": \"5d91d262a2c85fa24a27d4d7\",\n   \"first_name\": \"Akilan\",\n   \"last_name\": \"Elango\",\n   \"email\": \"akilan@squadcast.com\",\n   \"contact\": {\n    \"dial_code\": \"\",\n    \"phone_number\": \"\"\n   },\n   \"secondary_emails\": null,\n   \"email_verified\": false,\n   \"time_zone\": \"\",\n   \"title\": \"\",\n   \"bio\": \"\",\n   \"notification_rules\": [\n    {\n     \"type\": \"Email\",\n     \"time\": 0\n    },\n    {\n     \"type\": \"Push\",\n     \"time\": 0\n    },\n    {\n     \"type\": \"SMS\",\n     \"time\": 1\n    },\n    {\n     \"type\": \"Phone\",\n     \"time\": 2\n    }\n   ],\n   \"user_image\": false,\n   \"role_id\": \"5a425b383c36823b3ed91fb5\",\n   \"role\": \"admin\"\n  },\n  {\n   \"id\": \"5d91d262a2c85fa24a27d4da\",\n   \"first_name\": \"Madhu\",\n   \"last_name\": \"DS Frontend\",\n   \"email\": \"madhu@squadcast.com\",\n   \"contact\": {\n    \"dial_code\": \"\",\n    \"phone_number\": \"\"\n   },\n   \"secondary_emails\": null,\n   \"email_verified\": false,\n   \"time_zone\": \"\",\n   \"title\": \"\",\n   \"bio\": \"\",\n   \"notification_rules\": [\n    {\n     \"type\": \"Email\",\n     \"time\": 0\n    },\n    {\n     \"type\": \"Push\",\n     \"time\": 0\n    },\n    {\n     \"type\": \"SMS\",\n     \"time\": 1\n    },\n    {\n     \"type\": \"Phone\",\n     \"time\": 2\n    }\n   ],\n   \"user_image\": false,\n   \"role_id\": \"5a425b383c36823b3ed91fb6\",\n   \"role\": \"user\"\n  }\n ]\n}"
    },
    {
      "name": "Unauthorized",
      "originalRequest": {
        "method": "GET",
        "header": [
        ],
        "url": {
          "raw": "{{baseUrl}}/users",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "users"
          ]
        }
      },
      "status": "Unauthorized",
      "code": 401,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n \"meta\": {\n  \"status\": \"<integer>\",\n  \"error_message\": \"<string>\"\n }\n}"
    }
  ]
}