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

Set Pager Config

This endpoint sets your community's Inferno Pager configuration for a specific server.

Set Pager Config

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

This endpoint sets the Inferno Pager configuration for a specific server in your community. If nodes is omitted, the existing node tree for that server is preserved.

Request Body

Name
Type
Description

id*

string

Your community's ID

key*

string

Your community's API Key

type*

string

SET_PAGER_CONFIG

data*

array

Array of request objects

Updated pager config!
INVALID REQUEST TYPE
INVALID COMMUNITY ID
API IS NOT ENABLED FOR THIS COMMUNITY
INVALID API KEY
{
    "id": "YOUR_COMMUNITY_ID",
    "key": "YOUR_API_KEY",
    "type": "SET_PAGER_CONFIG",
    "data": [
        {
            "serverId": 1,
            "natureWords": {
                "Emergency": "Emergency",
                "NonEmergency": "Non-Emergency",
                "Administrative": "Administrative"
            },
            "maxAddresses": 5,
            "maxBodyLength": 250,
            "nodes": [
                {
                    "id": "root-1",
                    "name": "Fire",
                    "description": "Fire services",
                    "permission": "fire",
                    "address": "FIRE-01",
                    "shortCode": "F1",
                    "kind": "group",
                    "children": []
                }
            ]
        }
    ]
}

The nodes property is optional. If omitted, Sonoran CAD keeps the existing node tree for that serverId and only updates the minimal config fields.

Last updated

Was this helpful?