Update Street Sign

This endpoint allows you to modify existing street signs.

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

Update Street Sign

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

Request Body

NameTypeDescription

id

string

Your community's ID

key

string

Your community's API Key

type

string

UPDATE_STREETSIGN

data

array

Array of request objects

API ID(s) set!
{
    "id": "YOUR_COMMUNITY_ID",
    "key": "YOUR_API_KEY",
    "type": "UPDATE_STREETSIGN",
    "data": [
        {
          "serverId": 1, // Server Id
          "signData": {
              "ids": [1, 2],
              "text1": "",
              "text2": "",
              "text3": ""
          }
		    }
    ]
}

Last updated