Modify Blip
This endpoint allows you to easily update a custom live map blip.
Modify Blip
Request Body
Name
Type
Description
Blip 123 modified!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": "MODIFY_BLIP",
"data": [
{
"id": 123, // Blip IDm
"subType": "Example", // OPTIONAL - Differentiate custom types
"coordinates": { // OPTIONAL - Coordinate Update
"x": 0,
"y": 1
},
"radius": 100, // OPTIONAL - Displays a circle radius
"icon": "https://example.com/icon.png" // OPTIONAL - Icon Update
"color": "#df03fc", // OPTIONAL - Hex Color Code
"tooltip": "Example added from the API!" // OPTIONAL - Blip Tooltip
"data": [ // OPTIONAL - Display Data
{
"title": "Example 1",
"text": "123",
},
{
"title": "Example 2",
"text": "456",
}
]
},
]
}Last updated
Was this helpful?

