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.

This framework export handles the Remove Blip API endpoint.

function removeBlip(ids, cb) {
    exports["sonorancad"].performApiRequest({
        "ids": ids
    }, "REMOVE_BLIP", function (res) {
        if (cb !== null) {
            cb(res);
        }
    });
}

Parameters

PropertyTypeDescription

ids

Integer

Blip ID to remove

cb

Function

OPTIONAL: Callback function

Last updated