Update Street Sign

This endpoint allows you to modify existing street signs.

Update Street Sign

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

Request Body

Name
Type
Description

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

Was this helpful?