Set Postal Config

This endpoint allows you to set your community's postal configuration to be used with the Live Map search.

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

Set Postal Config

POST https://api.sonorancad.com/general/set_postals

This endpoint authenticates the use of our integrated street signs plugin.

Request Body

NameTypeDescription

id

string

Your community's ID

key

string

Your community's API Key

type

string

AUTH_STREETSIGNS

data

object

Request object

Success
{
    "id": "YOUR_COMMUNITY_ID",
    "key": "YOUR_API_KEY",
    "type": "SET_POSTALS",
    "data": [
        {
            "code": "2000",
            "x": 2325.4345703125,
            "y": 5147.21484375,
        },
        {
            "x": 2151.2138671875,
            "y": 5166.0888671875,
            "code": "2001"
        },
    ]
}

Last updated