Remove Blip

This endpoint allows you to remove custom blips from your community's live map.

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

Remove Blip

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

This endpoint allows you to remove a custom blip from the live map.

Request Body

NameTypeDescription

id*

string

Your community's ID

key*

string

Your community's API Key

type*

string

REMOVE_BLIP

data*

array

Array of request objects

Blip 123 removed!
{
    "id": "YOUR_COMMUNITY_ID",
    "key": "YOUR_API_KEY",
    "type": "REMOVE_BLIP",
    "data": [
        {
            "ids": [1, 2, 3] // Blip ID
        },
    ]
}

Last updated