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

Create Dispatch Call

Create a new dispatch call.

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

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

Create a new dispatch call and attach initial units resolved from community user IDs by default, or from linked Roblox IDs, linked Discord IDs, or account UUIDs.

Path Parameters

Name
Type
Description

serverId

integer

Configured Sonoran CAD server ID.

Request Body

The backend requires at least one identifier target through communityUserIds, roblox, discord, or accounts.

Property
Type
Required
Description

origin

integer

Yes

Call origin enum. See CALL_ORIGIN below.

status

integer

Yes

Call status enum. See CALL_STATUS below.

priority

integer

Yes

Call priority.

block

string

Yes

Block or intersection label.

address

string

Yes

Dispatch address text.

postal

string

Yes

Postal code.

title

string

Yes

Short dispatch title.

code

string

Yes

Call code such as 211.

description

string

Yes

Full call description.

notes

array

Yes

Initial note objects to store on the call.

communityUserIds

array of strings

No

Linked community users whose active identifiers should be attached.

roblox

integer

No

Roblox user ID whose linked account's active identifiers should be attached.

discord

string

No

Discord user ID whose linked account's active identifiers should be attached.

accounts

array of strings (uuid)

No

Accounts whose selected identifiers should be attached.

metaData

object

No

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

deleteAfterMinutes

integer

No

Schedule automatic deletion after creation.

Example Request

Response

Successful requests return application/json.

Enumeration Values

CALL_STATUS

Value
Description

0

PENDING

1

ACTIVE

2

CLOSED

CALL_ORIGIN

Value
Description

0

RADIO_DISPATCH

1

SELF_INITIATED

Last updated

Was this helpful?