Get Identifiers

Sonoran CAD allows you to retrieve all account unit identifiers via API endpoint.

Get Account Identifiers

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

This endpoint allows you to retrieve all unit identifiers for a specified account in your community.

Request Body

Name
Type
Description

id*

string

Your community's ID

key*

string

Your community's API Key

type*

string

GET_IDENTIFIERS

data*

array

Array of request objects

{
    "selectedIdent": 1,
    "identifiers": [
        // Array of unit objects
    ]
}
{
    "id": "YOUR_COMMUNITY_ID",
    "key": "YOUR_API_KEY",
    "type": "GET_IDENTIFIERS",
    "data": [
        {
            "apiId": "Steam:1234", // (OPTION 1): Generally the Steam HEX
            "account": "000-000-000" // (OPTION 2): Sonoran Account UUID
        }
    ]
}

Last updated

Was this helpful?