Set Street Sign Config

This endpoint sets your community's street sign configuration.

This API endpoint requires the pro version of Sonoran CAD or higher. For more information, see our pricing page.

Set Street Sign Config

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

Request Body

NameTypeDescription

id

string

Your community's ID

key

string

Your community's API Key

type

string

SET_STREETSIGN_CONFIG

data

array

Array of request objects

API ID(s) set!
{
    "id": "YOUR_COMMUNITY_ID",
    "key": "YOUR_API_KEY",
    "type": "SET_STREETSIGN_CONFIG",
    "data": [
        {
          "serverId": 1, // Server Id
          "signConfig": [
              {
                  "id": 1,
                  "label": "Some street sign",
                  "text1": "",
                  "text2": "",
                  "text3": ""
              },
              {
                  "id": 2,
                  "label": "Another street sign",
                  "text1": "",
                  "text2": "",
                  "text3": ""
              }
          ]
		    }
    ]
}

Last updated