Remove Record

This endpoint allows you to remove any record retrieved from a LOOKUP_NAME or LOOKUP_PLATE request.

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

Remove Record

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

This endpoint allows you to remove any record in your community.

Request Body

NameTypeDescription

id

string

Your community's ID

key

string

Your community's API Key

type

string

REMOVE_RECORD

data

array

Array of unit status objects

REMOVED RECORD {ID}
{
    "id": "YOUR_COMMUNITY_ID",
    "key": "YOUR_API_KEY",
    "type": "REMOVE_RECORD",
    "data": [
        {
            "id": 100, // Unique ID - Retrieved from LOOKUP_NAME or LOOKUP_PLATE
        },
    ]
}

Last updated