For the complete documentation index, see llms.txt. This page is also available as Markdown.

Create 911 Call

Create a new 911 call for a server.

POST https://api.sonorancad.com/v2/emergency/servers/{serverId}/calls/911

Rate limit: 10 requests per minute Authenticated v2 endpoints are rate limited per API key rather than per IP address.

Create a new 911 call for a server.

Path Parameters

Name
Type
Description

serverId

integer

Configured Sonoran CAD server ID.

Request Body

Common metaData keys used by the CAD:

Property
Type
Required
Description

isEmergency

boolean

Yes

Whether the 911 should be marked as an emergency call.

caller

string

Yes

Caller name or label shown in CAD.

location

string

Yes

Human-readable location or address.

description

string

Yes

Call details shown to dispatchers.

deleteAfterMinutes

integer

No

Schedule automatic deletion after creation.

metaData

object

No

Additional string key/value metadata. Pass x and y coordinate values to enable live map placement, 911 screenshot rendering, and coordinate-based dispatch tools. z, postal, block, code, and priority may also be supplied when applicable.

{
  "isEmergency": true,
  "caller": "911 Caller",
  "location": "Alta St / Integrity Way",
  "description": "Shots fired",
  "deleteAfterMinutes": 15,
  "metaData": {
    "source": "integration",
    "x": "425.1",
    "y": "-979.2",
    "z": "30.7",
    "postal": "9001"
  }
}

Example Request

Response

Successful requests return application/json.

Last updated

Was this helpful?