Back to Collection Items
#include <C_CkHttp.h>
#include <C_CkStringBuilder.h>
#include <C_CkJsonObject.h>
void ChilkatSample(void)
{
HCkHttp http;
BOOL success;
HCkStringBuilder sbResponseBody;
HCkJsonObject jResp;
int respStatusCode;
const char *expression;
const char *Entity_type;
const char *Entity_id;
const char *Id;
const char *Created_at;
const char *Updated_at;
const char *Deleted_at;
const char *Service_id;
const char *Organization_id;
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_SetRequestHeader(http,"Authorization","");
sbResponseBody = CkStringBuilder_Create();
success = CkHttp_QuickGetSb(http,"https://api.squadcast.com/v3/services/:serviceID/routing-rules",sbResponseBody);
if (success == FALSE) {
printf("%s\n",CkHttp_lastErrorText(http));
CkHttp_Dispose(http);
CkStringBuilder_Dispose(sbResponseBody);
return;
}
jResp = CkJsonObject_Create();
CkJsonObject_LoadSb(jResp,sbResponseBody);
CkJsonObject_putEmitCompact(jResp,FALSE);
printf("Response Body:\n");
printf("%s\n",CkJsonObject_emit(jResp));
respStatusCode = CkHttp_getLastStatus(http);
printf("Response Status Code = %d\n",respStatusCode);
if (respStatusCode >= 400) {
printf("Response Header:\n");
printf("%s\n",CkHttp_lastHeader(http));
printf("Failed.\n");
CkHttp_Dispose(http);
CkStringBuilder_Dispose(sbResponseBody);
CkJsonObject_Dispose(jResp);
return;
}
// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)
// {
// "data": {
// "id": "5d8b23427c870edd41453c25",
// "created_at": "2019-09-25T08:20:18.884Z",
// "updated_at": "2019-09-25T08:20:18.884Z",
// "deleted_at": null,
// "service_id": "5d81d9687000fb6b9def7e35",
// "organization_id": "5d81d9187000fb6b9def7e32",
// "rules": [
// {
// "expression": "re(current.labels.alertname, \"^CPUThrottlingHigh.*\") && re(past.labels.alertname, \"^CPUThrottlingHigh.*\")",
// "route_to": {
// "entity_type": "escalationpolicy",
// "entity_id": "5d81d9407000fb6b9def7e33"
// }
// },
// {
// "expression": "re(current.labels.alertname, \"^CPUThrottlingHigh.*\") && re(past.labels.alertname, \"^CPUThrottlingHigh.*\")",
// "route_to": {
// "entity_type": "squad",
// "entity_id": "5d8b5976578cc3b845cb3608"
// }
// },
// {
// "expression": "re(current.labels.alertname, \"^CPUThrottlingHigh.*\") && re(past.labels.alertname, \"^CPUThrottlingHigh.*\")",
// "route_to": {
// "entity_type": "user",
// "entity_id": "5d81d9187000fb6b9def7e31"
// }
// }
// ]
// }
// }
// 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.
Id = CkJsonObject_stringOf(jResp,"data.id");
Created_at = CkJsonObject_stringOf(jResp,"data.created_at");
Updated_at = CkJsonObject_stringOf(jResp,"data.updated_at");
Deleted_at = CkJsonObject_stringOf(jResp,"data.deleted_at");
Service_id = CkJsonObject_stringOf(jResp,"data.service_id");
Organization_id = CkJsonObject_stringOf(jResp,"data.organization_id");
i = 0;
count_i = CkJsonObject_SizeOfArray(jResp,"data.rules");
while (i < count_i) {
CkJsonObject_putI(jResp,i);
expression = CkJsonObject_stringOf(jResp,"data.rules[i].expression");
Entity_type = CkJsonObject_stringOf(jResp,"data.rules[i].route_to.entity_type");
Entity_id = CkJsonObject_stringOf(jResp,"data.rules[i].route_to.entity_id");
i = i + 1;
}
CkHttp_Dispose(http);
CkStringBuilder_Dispose(sbResponseBody);
CkJsonObject_Dispose(jResp);
}
Curl Command
curl -X GET
-H "Authorization: "
https://api.squadcast.com/v3/services/:serviceID/routing-rules
Postman Collection Item JSON
{
"name": "Get Routing Rules",
"request": {
"auth": {
"type": "noauth"
},
"method": "GET",
"header": [
{
"key": "Authorization",
"value": ""
}
],
"url": {
"raw": "{{baseUrl}}/services/:serviceID/routing-rules",
"host": [
"{{baseUrl}}"
],
"path": [
"services",
":serviceID",
"routing-rules"
],
"variable": [
{
"key": "serviceID",
"value": "<string>",
"type": "string",
"description": "(Required) "
}
]
},
"description": "This endpoint returns the default routing rules for the service if not already created.\nRequires `access_token` as a `Bearer {{token}}` in the `Authorization` header with `read` scope."
},
"response": [
{
"name": "Internal Server Error",
"originalRequest": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{baseUrl}}/services/:serviceID/routing-rules",
"host": [
"{{baseUrl}}"
],
"path": [
"services",
":serviceID",
"routing-rules"
],
"variable": [
{
"key": "serviceID"
}
]
}
},
"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": "Unauthorized",
"originalRequest": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{baseUrl}}/services/:serviceID/routing-rules",
"host": [
"{{baseUrl}}"
],
"path": [
"services",
":serviceID",
"routing-rules"
],
"variable": [
{
"key": "serviceID"
}
]
}
},
"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}"
},
{
"name": "Forbidden",
"originalRequest": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{baseUrl}}/services/:serviceID/routing-rules",
"host": [
"{{baseUrl}}"
],
"path": [
"services",
":serviceID",
"routing-rules"
],
"variable": [
{
"key": "serviceID"
}
]
}
},
"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": "OK",
"originalRequest": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{baseUrl}}/services/:serviceID/routing-rules",
"host": [
"{{baseUrl}}"
],
"path": [
"services",
":serviceID",
"routing-rules"
],
"variable": [
{
"key": "serviceID"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"data\": {\n \"id\": \"5d8b23427c870edd41453c25\",\n \"created_at\": \"2019-09-25T08:20:18.884Z\",\n \"updated_at\": \"2019-09-25T08:20:18.884Z\",\n \"deleted_at\": null,\n \"service_id\": \"5d81d9687000fb6b9def7e35\",\n \"organization_id\": \"5d81d9187000fb6b9def7e32\",\n \"rules\": [\n {\n \"expression\": \"re(current.labels.alertname, \\\"^CPUThrottlingHigh.*\\\") && re(past.labels.alertname, \\\"^CPUThrottlingHigh.*\\\")\",\n \"route_to\": {\n \"entity_type\": \"escalationpolicy\",\n \"entity_id\": \"5d81d9407000fb6b9def7e33\"\n }\n },\n {\n \"expression\": \"re(current.labels.alertname, \\\"^CPUThrottlingHigh.*\\\") && re(past.labels.alertname, \\\"^CPUThrottlingHigh.*\\\")\",\n \"route_to\": {\n \"entity_type\": \"squad\",\n \"entity_id\": \"5d8b5976578cc3b845cb3608\"\n }\n },\n {\n \"expression\": \"re(current.labels.alertname, \\\"^CPUThrottlingHigh.*\\\") && re(past.labels.alertname, \\\"^CPUThrottlingHigh.*\\\")\",\n \"route_to\": {\n \"entity_type\": \"user\",\n \"entity_id\": \"5d81d9187000fb6b9def7e31\"\n }\n }\n ]\n }\n}"
}
]
}