Back to Collection Items
var
http: HCkHttp;
success: Boolean;
sbResponseBody: HCkStringBuilder;
jResp: HCkJsonObject;
respStatusCode: Integer;
expression: PWideChar;
Foo: PWideChar;
Severity: PWideChar;
Tag2: PWideChar;
Id: PWideChar;
Created_at: PWideChar;
Updated_at: PWideChar;
Deleted_at: PWideChar;
Service_id: PWideChar;
Organization_id: PWideChar;
i: Integer;
count_i: Integer;
begin
// 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/tagging-rules',sbResponseBody);
if (success = False) then
begin
Memo1.Lines.Add(CkHttp__lastErrorText(http));
Exit;
end;
jResp := CkJsonObject_Create();
CkJsonObject_LoadSb(jResp,sbResponseBody);
CkJsonObject_putEmitCompact(jResp,False);
Memo1.Lines.Add('Response Body:');
Memo1.Lines.Add(CkJsonObject__emit(jResp));
respStatusCode := CkHttp_getLastStatus(http);
Memo1.Lines.Add('Response Status Code = ' + IntToStr(respStatusCode));
if (respStatusCode >= 400) then
begin
Memo1.Lines.Add('Response Header:');
Memo1.Lines.Add(CkHttp__lastHeader(http));
Memo1.Lines.Add('Failed.');
Exit;
end;
// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)
// {
// "data": {
// "id": "5d89e22915e52fa3f8620d37",
// "created_at": "2019-09-24T09:30:17.463Z",
// "updated_at": "2019-09-24T09:30:17.463Z",
// "deleted_at": null,
// "service_id": "5d81d9687000fb6b9def7e35",
// "organization_id": "5d81d9187000fb6b9def7e32",
// "rules": [
// {
// "expression": "re(current.labels.alertname, \"^CPUThrottlingHigh.*\") && re(past.labels.alertname, \"^CPUThrottlingHigh.*\")",
// "tags": {
// "foo": "bar",
// "severity": "asa",
// "tag2": "as"
// }
// }
// ]
// }
// }
// Sample code for parsing the JSON response...
// Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code
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 do
begin
CkJsonObject_putI(jResp,i);
expression := CkJsonObject__stringOf(jResp,'data.rules[i].expression');
Foo := CkJsonObject__stringOf(jResp,'data.rules[i].tags.foo');
Severity := CkJsonObject__stringOf(jResp,'data.rules[i].tags.severity');
Tag2 := CkJsonObject__stringOf(jResp,'data.rules[i].tags.tag2');
i := i + 1;
end;
CkHttp_Dispose(http);
CkStringBuilder_Dispose(sbResponseBody);
CkJsonObject_Dispose(jResp);
Curl Command
curl -X GET
-H "Authorization: "
https://api.squadcast.com/v3/services/:serviceID/tagging-rules
Postman Collection Item JSON
{
"name": "Get Tagging Rules",
"request": {
"auth": {
"type": "noauth"
},
"method": "GET",
"header": [
{
"key": "Authorization",
"value": ""
}
],
"url": {
"raw": "{{baseUrl}}/services/:serviceID/tagging-rules",
"host": [
"{{baseUrl}}"
],
"path": [
"services",
":serviceID",
"tagging-rules"
],
"variable": [
{
"key": "serviceID",
"value": "<string>",
"type": "string",
"description": "(Required) service id"
}
]
},
"description": "This endpoint returns the default tagging rules for the service if not already created.\nRequires `access_token` as a `Bearer {{token}}` in the `Authorization` header with `read` scope."
},
"response": [
{
"name": "OK",
"originalRequest": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{baseUrl}}/services/:serviceID/tagging-rules",
"host": [
"{{baseUrl}}"
],
"path": [
"services",
":serviceID",
"tagging-rules"
],
"variable": [
{
"key": "serviceID"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"data\": {\n \"id\": \"5d89e22915e52fa3f8620d37\",\n \"created_at\": \"2019-09-24T09:30:17.463Z\",\n \"updated_at\": \"2019-09-24T09:30:17.463Z\",\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 \"tags\": {\n \"foo\": \"bar\",\n \"severity\": \"asa\",\n \"tag2\": \"as\"\n }\n }\n ]\n }\n}"
}
]
}