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!
{
    "id": "YOUR_COMMUNITY_ID",
    "key": "YOUR_API_KEY",
    "type": "REMOVE_BLIP",
    "data": [
        {
            "ids": [1, 2, 3] // Blip ID
        },
    ]
}

Last updated

Was this helpful?