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

Create Identifier

Create a new identifier for an account.

POST https://api.sonorancad.com/v2/emergency/accounts/{accountUuid}/identifiers

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

Create a new identifier for an account.

Path Parameters

Name
Type
Description

accountUuid

string (uuid)

Sonoran CAD account UUID.

Request Body

All identifier properties are optional in the backend. If omitted, the server uses the defaults shown below.

Property
Type
Required
Default
Description

status

integer

No

0

Initial identifier status. See UNIT_STATUS below.

aop

string

No

""

Optional area of patrol string.

unitNum

string

No

"NEW UNIT"

Displayed unit number.

name

string

No

"NO NAME"

Identifier display name.

district

string

No

"NOT SET"

District name.

department

string

No

"NOT SET"

Department name.

subdivision

string

No

"NOT SET"

Subdivision name.

rank

string

No

"NOT SET"

Rank label.

group

string

No

""

Optional persistent group name.

page

integer

No

-1

CAD page enum. See UNIT_PAGE below.

isDispatch

boolean

No

false

Marks the identifier as a dispatcher.

Example Request

Response

Successful requests return application/json.

Enumeration Values

UNIT_STATUS

Value
Description

0

UNAVAILABLE

1

BUSY

2

AVAILABLE

3

ENROUTE

4

ON_SCENE

100

OFFLINE

UNIT_PAGE

Value
Description

0

POLICE

1

FIRE

2

EMS

3

DISPATCH

-1

UNKNOWN

Last updated

Was this helpful?