Skip to content

Latest commit

 

History

History
31 lines (25 loc) · 1.01 KB

File metadata and controls

31 lines (25 loc) · 1.01 KB
description
This endpoint allows you to add a new custom blip to your community's live map!

Add Blips

{% hint style="warning" %} This API endpoint requires the pro version of Sonoran CAD or higher.
For more information, see our pricing page. {% endhint %}

This framework export handles the Add Blip API endpoint.

function addBlips(blips, cb) {
    exports["sonorancad"].performApiRequest(blips, "ADD_BLIP", function (res) {
        if (cb != null) {
            cb(res);
        }
    });
}

Parameters

Property Type Description
blips Table Table of blip objects
cb Function OPTIONAL: Callback function