Back to Collection Items
load ./chilkat.dll
# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.
set http [new_CkHttp]
set queryParams [new_CkJsonObject]
CkJsonObject_UpdateString $queryParams "name" ""
CkHttp_SetRequestHeader $http "Authorization" ""
# resp is a CkHttpResponse
set resp [CkHttp_QuickRequestParams $http "GET" "https://api.squadcast.com/v3/services" $queryParams]
if {[CkHttp_get_LastMethodSuccess $http] == 0} then {
puts [CkHttp_lastErrorText $http]
delete_CkHttp $http
delete_CkJsonObject $queryParams
exit
}
set sbResponseBody [new_CkStringBuilder]
CkHttpResponse_GetBodySb $resp $sbResponseBody
set jResp [new_CkJsonObject]
CkJsonObject_LoadSb $jResp $sbResponseBody
CkJsonObject_put_EmitCompact $jResp 0
puts "Response Body:"
puts [CkJsonObject_emit $jResp]
set respStatusCode [CkHttpResponse_get_StatusCode $resp]
puts "Response Status Code = $respStatusCode"
if {$respStatusCode >= 400} then {
puts "Response Header:"
puts [CkHttpResponse_header $resp]
puts "Failed."
delete_CkHttpResponse $resp
delete_CkHttp $http
delete_CkJsonObject $queryParams
delete_CkStringBuilder $sbResponseBody
delete_CkJsonObject $jResp
exit
}
delete_CkHttpResponse $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
set i 0
set count_i [CkJsonObject_SizeOfArray $jResp "data"]
while {$i < $count_i} {
CkJsonObject_put_I $jResp $i
set id [CkJsonObject_stringOf $jResp "data[i].id"]
set name [CkJsonObject_stringOf $jResp "data[i].name"]
set slug [CkJsonObject_stringOf $jResp "data[i].slug"]
set email [CkJsonObject_stringOf $jResp "data[i].email"]
set escalation_policy_id [CkJsonObject_stringOf $jResp "data[i].escalation_policy_id"]
set organization_id [CkJsonObject_stringOf $jResp "data[i].organization_id"]
set api_key [CkJsonObject_stringOf $jResp "data[i].api_key"]
set description [CkJsonObject_stringOf $jResp "data[i].description"]
set depends [CkJsonObject_stringOf $jResp "data[i].depends"]
set Id [CkJsonObject_stringOf $jResp "data[i].escalation_policy.id"]
set Name [CkJsonObject_stringOf $jResp "data[i].escalation_policy.name"]
set Description [CkJsonObject_stringOf $jResp "data[i].escalation_policy.description"]
set Slug [CkJsonObject_stringOf $jResp "data[i].escalation_policy.slug"]
set i [expr $i + 1]
}
delete_CkHttp $http
delete_CkJsonObject $queryParams
delete_CkStringBuilder $sbResponseBody
delete_CkJsonObject $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}"
}
]
}