Set Available Callouts

This endpoint sets your community's available ERS callouts.

Set Available Callouts

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

Request Body

Name
Type
Description

id

string

Your community's ID

key

string

Your community's API Key

type

string

SET_AVAILABLE_CALLOUTS

data

array

Array of request objects

Updated 1234 callouts
{
    "id": "YOUR_COMMUNITY_ID",
    "key": "YOUR_API_KEY",
    "type": "SET_AVAILABLE_CALLOUTS",
    "data": {
        "callouts": [
            {
              "id": "some_callout_name",
              "data": {}
            },
            {
              "id": "some_callout_name_2",
              "data": {}
            }
        ],
        "serverId": 1
    }
}

Last updated

Was this helpful?