Add Blip

This endpoint allows you to add a new custom blip to your community's live map!

Add Blip

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

This endpoint allows you to add a custom blip to your live map.

Request Body

Name
Type
Description

id*

string

Your community's ID

key*

string

Your community's API Key

type*

string

ADD_BLIP

data*

array

Array of request objects

// Blip object with ID set
[
    {
        "id": 1234,
        "coordinates": {
            "x": 0,
            "y": 0
        },
        "icon": "https://example.com/icon.png"
    }
]

Last updated

Was this helpful?