For the complete documentation index, see llms.txt. This page is also available as Markdown.

Remove Blip

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

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

Name
Type
Description

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!
INVALID REQUEST TYPE
INVALID COMMUNITY ID
API ENDPOINT IS NOT ENABLED FOR THIS COMMUNITY
INVALID API KEY
{
    "id": "YOUR_COMMUNITY_ID",
    "key": "YOUR_API_KEY",
    "type": "REMOVE_BLIP",
    "data": [
        {
            "ids": [1, 2, 3] // Blip ID
        },
    ]
}

Last updated

Was this helpful?