This is a lower-level API. Lower-level APIs are not recommended for most projects, and may not be available on all plans. See our page on recommended deployment patterns for more information.
Event Annotations API

stickynote:remove

Triggered when a sticky note is removed.

Examples

annotationsApp.on('stickynote:remove', function (payloadData) {
    console.log('Removed a Sticky Note with an ID of ' + payloadData.id);
});

Callback arguments

  • id number
    The unique id of the sticky note that was removed.
Was this article helpful?