Foxpro / Squadcast API V3 / Bulk Resolve Incidents
Back to Collection Items
LOCAL loHttp
LOCAL lnSuccess
LOCAL loJson
LOCAL loResp
* This example assumes the Chilkat API to have been previously unlocked.
* See Global Unlock Sample for sample code.
* For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.Http')
loHttp = CreateObject('Chilkat.Http')
* Use this online tool to generate code from sample JSON: Generate Code to Create JSON
* The following JSON is sent in the request body.
* {
* "incident_ids": [
* "5f04e3a08fada03f23aac811",
* "5f04e3a08fada03f23aac812",
* "5f04e3a08fada03f23aac813"
* ]
* }
* For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.JsonObject')
loJson = CreateObject('Chilkat.JsonObject')
loJson.UpdateString("incident_ids[0]","5f04e3a08fada03f23aac811")
loJson.UpdateString("incident_ids[1]","5f04e3a08fada03f23aac812")
loJson.UpdateString("incident_ids[2]","5f04e3a08fada03f23aac813")
* Adds the "Authorization: Bearer <access_token>" header.
loHttp.AuthToken = "<access_token>"
loResp = loHttp.PostJson3("https://api.squadcast.com/v3/incidents/resolve","application/json",loJson)
IF (loHttp.LastMethodSuccess = 0) THEN
? loHttp.LastErrorText
RELEASE loHttp
RELEASE loJson
CANCEL
ENDIF
? STR(loResp.StatusCode)
? loResp.BodyStr
RELEASE loResp
RELEASE loHttp
RELEASE loJson
Curl Command
curl -X POST
-H "Authorization: Bearer <access_token>"
-d '{
"incident_ids": [
"5f04e3a08fada03f23aac811",
"5f04e3a08fada03f23aac812",
"5f04e3a08fada03f23aac813"
]
}'
https://api.squadcast.com/v3/incidents/resolve
Postman Collection Item JSON
{
"name": "Bulk Resolve Incidents",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{sq_pb_auth_header}}",
"type": "string"
}
]
},
"method": "POST",
"header": [
],
"body": {
"mode": "raw",
"raw": "{\n \"incident_ids\": [\n \"5f04e3a08fada03f23aac811\",\n \"5f04e3a08fada03f23aac812\",\n \"5f04e3a08fada03f23aac813\"\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/incidents/resolve",
"host": [
"{{baseUrl}}"
],
"path": [
"incidents",
"resolve"
]
},
"description": "- This endpoint is used to bulk resolve the incident by IDs.\n- Requires `access_token` as a `Bearer {{token}}` in the `Authorization` header."
},
"response": [
{
"name": "200 OK",
"originalRequest": {
"method": "POST",
"header": [
],
"body": {
"mode": "raw",
"raw": "{\n \"incident_ids\": [\n \"5f04e3a08fada03f23aac811\",\n \"5f04e3a08fada03f23aac812\",\n \"5f04e3a08fada03f23aac813\"\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/incidents/resolve",
"host": [
"{{baseUrl}}"
],
"path": [
"incidents",
"resolve"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": null,
"cookie": [
],
"body": "{\n \"data\": \"all incident successfully resolved\"\n}"
},
{
"name": "400 Bad Request",
"originalRequest": {
"method": "POST",
"header": [
],
"body": {
"mode": "raw",
"raw": "{\n \"incident_ids\": [\n \"5f04e3a08fada03f23aac811\",\n \"5f04e3a08fada03f23aac812\",\n \"5f04e3a08fada03f23aac813\"\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/incidents/resolve",
"host": [
"{{baseUrl}}"
],
"path": [
"incidents",
"resolve"
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "json",
"header": null,
"cookie": [
],
"body": "{\n \"meta\": {\n \"status\": 400,\n \"error_message\": \"<string>\"\n }\n}"
},
{
"name": "401 Unauthorized",
"originalRequest": {
"method": "POST",
"header": [
],
"body": {
"mode": "raw",
"raw": "{\n \"incident_ids\": [\n \"5f04e3a08fada03f23aac811\",\n \"5f04e3a08fada03f23aac812\",\n \"5f04e3a08fada03f23aac813\"\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/incidents/resolve",
"host": [
"{{baseUrl}}"
],
"path": [
"incidents",
"resolve"
]
}
},
"status": "Unauthorized",
"code": 401,
"_postman_previewlanguage": "json",
"header": null,
"cookie": [
],
"body": "{\n \"meta\": {\n \"status\": 401,\n \"error_message\": \"<string>\"\n }\n}"
},
{
"name": "403 Forbidden",
"originalRequest": {
"method": "POST",
"header": [
],
"body": {
"mode": "raw",
"raw": "{\n \"incident_ids\": [\n \"5f04e3a08fada03f23aac811\",\n \"5f04e3a08fada03f23aac812\",\n \"5f04e3a08fada03f23aac813\"\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/incidents/resolve",
"host": [
"{{baseUrl}}"
],
"path": [
"incidents",
"resolve"
]
}
},
"status": "Forbidden",
"code": 403,
"_postman_previewlanguage": "json",
"header": null,
"cookie": [
],
"body": "{\n \"meta\": {\n \"status\": 403,\n \"error_message\": \"<string>\"\n }\n}"
},
{
"name": "500 Internal Server Error",
"originalRequest": {
"method": "POST",
"header": [
],
"body": {
"mode": "raw",
"raw": "{\n \"incident_ids\": [\n \"5f04e3a08fada03f23aac811\",\n \"5f04e3a08fada03f23aac812\",\n \"5f04e3a08fada03f23aac813\"\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/incidents/resolve",
"host": [
"{{baseUrl}}"
],
"path": [
"incidents",
"resolve"
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "json",
"header": null,
"cookie": [
],
"body": "{\n \"meta\": {\n \"status\": 500,\n \"error_message\": \"<string>\"\n }\n}"
}
]
}