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

Set Street Sign Config

This endpoint sets your community's street sign configuration.

Set Street Sign Config

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

Request Body

Name
Type
Description

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

Was this helpful?