Remove 911

This endpoint allows you to remove an existing emergency/911 call from the CAD.

This API endpoint requires the Standard version of Sonoran CAD or higher. For more information, see our pricing page.

This endpoint allows you to remove an existing emergency/911 call from the CAD.

Remove 911

POST https://api.sonorancad.com/emergency/remove_911

Request Body

NameTypeDescription

id

string

Your community's ID

key

string

Your community's API Key

type

string

REMOVE_911

data

array

Array of request objects

API ID(s) set!
{
    "id": "YOUR_COMMUNITY_ID",
    "key": "YOUR_API_KEY",
    "type": "REMOVE_911",
    "data": [
        {
          "serverId": 1,
          "callId": 1 // Call ID
	}
    ]
}

Call ID

The call ID integer value can be retrieved from the get calls API endpoint, or returned in the response message when creating a 911 call via an API call.

Last updated