New 911 Call

The 911 Call API endpoint allows you to send 911 calls from in-game directly to your dispatchers.

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

Emergency Call

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

The 911 call API endpoint allows you to send 911 calls from in-game directly to your dispatchers.

Request Body

NameTypeDescription

id

string

Your community's ID

key

string

Your community's API Key

type

string

CALL_911

data

array

Array of emergency call objects

EMERGENCY CALL ADDED ID: {ID}
{
    "id": "YOUR_COMMUNITY_ID",
    "key": "YOUR_API_KEY",
    "type": "CALL_911",
    "data": [
        {
            "serverId": 1, // Server ID Integer
            "isEmergency": true, // Displays EMERGENCY or CIVIL type in the CAD
            "caller": "John Doe",
            "location": "1234 E. Test St.",
            "description": "Help, someone is breaking into my house!",
            "metaData": {
                "someKey": "someValue", // OPTIONAL: metaData for API custom storage
                "x": 1000, // OPTIONAL: Live Map X Coordinate
                "y": 1000 // OPTIONAL: Live Map Y Coordinate
            },
        }
    ]
}

Server ID

Because Sonoran CAD allows you to separate units and dispatchers into separate servers, the serverId field ensures this emergency call is sent to the appropriate dispatcher. For more information, see our guide on configuring multiple servers.

Meta Data

The metaData object can be used to store custom API data in the 911 call.

Additionally, the following metaData properties will auto-set the dispatch call information:

PropertyTypeDescription

priority

Integer

Dispatch call priority

Values 1, 2, 3

block

String

Dispatch Call Block

postal

String

Dispatch Call Postal

code

String

Dispatch Call 10-Code

Last updated