Chilkat Online Tools

unicodeC / Squadcast API V3 / Get All Services

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 *id;
    const wchar_t *name;
    const wchar_t *slug;
    const wchar_t *email;
    const wchar_t *escalation_policy_id;
    const wchar_t *organization_id;
    const wchar_t *api_key;
    const wchar_t *description;
    const wchar_t *depends;
    const wchar_t *Id;
    const wchar_t *Name;
    const wchar_t *Description;
    const wchar_t *Slug;
    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();

    queryParams = CkJsonObjectW_Create();
    CkJsonObjectW_UpdateString(queryParams,L"name",L"");

    CkHttpW_SetRequestHeader(http,L"Authorization",L"");

    resp = CkHttpW_QuickRequestParams(http,L"GET",L"https://api.squadcast.com/v3/services",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)

    // {
    //   "data": [
    //     {
    //       "id": "5e8edb24668e003cb0b18ba1",
    //       "name": "Payment API Service",
    //       "slug": "payment-api-service",
    //       "email": "unique_string@gopherhut.incidents.squadcast.com",
    //       "escalation_policy_id": "5d81d9407000fb6b9def7e33",
    //       "organization_id": "5d81d9187000fb6b9def7e32",
    //       "api_key": "2f81ac8b2362990dd220f8bb4f7cd30ccc3dac43",
    //       "description": "Payment API Service monitor",
    //       "depends": null,
    //       "escalation_policy": {
    //         "id": "5d81d9407000fb6b9def7e33",
    //         "name": "Example Escalation Policy",
    //         "description": "On-Boarding Example",
    //         "slug": "example-escalation-policy"
    //       }
    //     },
    //     {
    //       "id": "5e8edb24668e003cb0b18ba2",
    //       "name": "Notification Service",
    //       "slug": "notification-api-service",
    //       "email": "unique_string@gopherhut.incidents.squadcast.com",
    //       "escalation_policy_id": "5d81d9407000fb6b9def7e33",
    //       "organization_id": "5d81d9187000fb6b9def7e32",
    //       "api_key": "2f81ac8b2362990dd220f8bb4f7cd30ccc3d43",
    //       "description": "Notification API Service monitor",
    //       "depends": null,
    //       "escalation_policy": {
    //         "id": "5d81d9407000fb6b9def7e33",
    //         "name": "Example Escalation Policy",
    //         "description": "On-Boarding Example",
    //         "slug": "example-escalation-policy"
    //       }
    //     }
    //   ]
    // }

    // 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");
        name = CkJsonObjectW_stringOf(jResp,L"data[i].name");
        slug = CkJsonObjectW_stringOf(jResp,L"data[i].slug");
        email = CkJsonObjectW_stringOf(jResp,L"data[i].email");
        escalation_policy_id = CkJsonObjectW_stringOf(jResp,L"data[i].escalation_policy_id");
        organization_id = CkJsonObjectW_stringOf(jResp,L"data[i].organization_id");
        api_key = CkJsonObjectW_stringOf(jResp,L"data[i].api_key");
        description = CkJsonObjectW_stringOf(jResp,L"data[i].description");
        depends = CkJsonObjectW_stringOf(jResp,L"data[i].depends");
        Id = CkJsonObjectW_stringOf(jResp,L"data[i].escalation_policy.id");
        Name = CkJsonObjectW_stringOf(jResp,L"data[i].escalation_policy.name");
        Description = CkJsonObjectW_stringOf(jResp,L"data[i].escalation_policy.description");
        Slug = CkJsonObjectW_stringOf(jResp,L"data[i].escalation_policy.slug");
        i = i + 1;
    }



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

    }

Curl Command

curl -G -d "name="
	-H "Authorization: "
https://api.squadcast.com/v3/services

Postman Collection Item JSON

{
  "name": "Get All Services",
  "request": {
    "auth": {
      "type": "noauth"
    },
    "method": "GET",
    "header": [
      {
        "key": "Authorization",
        "value": ""
      }
    ],
    "url": {
      "raw": "{{baseUrl}}/services?name=",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "services"
      ],
      "query": [
        {
          "key": "name",
          "value": ""
        }
      ]
    },
    "description": "Returns all the active services for the organization.\nRequires `access_token` as a `Bearer {{token}}` in the `Authorization` header with `read` scope.\n\nQuery Param:\n\n`name`: get a service by name"
  },
  "response": [
    {
      "name": "OK",
      "originalRequest": {
        "method": "GET",
        "header": [
        ],
        "url": {
          "raw": "{{baseUrl}}/services",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "services"
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n \"data\": [\n  {\n   \"id\": \"5e8edb24668e003cb0b18ba1\",\n   \"name\": \"Payment API Service\",\n   \"slug\": \"payment-api-service\",\n   \"email\": \"unique_string@gopherhut.incidents.squadcast.com\",\n   \"escalation_policy_id\": \"5d81d9407000fb6b9def7e33\",\n   \"organization_id\": \"5d81d9187000fb6b9def7e32\",\n   \"api_key\": \"2f81ac8b2362990dd220f8bb4f7cd30ccc3dac43\",\n   \"description\": \"Payment API Service monitor\",\n   \"depends\": null,\n   \"escalation_policy\": {\n    \"id\": \"5d81d9407000fb6b9def7e33\",\n    \"name\": \"Example Escalation Policy\",\n    \"description\": \"On-Boarding Example\",\n    \"slug\": \"example-escalation-policy\"\n   }\n  },\n  {\n   \"id\": \"5e8edb24668e003cb0b18ba2\",\n   \"name\": \"Notification Service\",\n   \"slug\": \"notification-api-service\",\n   \"email\": \"unique_string@gopherhut.incidents.squadcast.com\",\n   \"escalation_policy_id\": \"5d81d9407000fb6b9def7e33\",\n   \"organization_id\": \"5d81d9187000fb6b9def7e32\",\n   \"api_key\": \"2f81ac8b2362990dd220f8bb4f7cd30ccc3d43\",\n   \"description\": \"Notification API Service monitor\",\n   \"depends\": null,\n   \"escalation_policy\": {\n    \"id\": \"5d81d9407000fb6b9def7e33\",\n    \"name\": \"Example Escalation Policy\",\n    \"description\": \"On-Boarding Example\",\n    \"slug\": \"example-escalation-policy\"\n   }\n  }\n ]\n}"
    }
  ]
}