onAttachmentDeleted( )


Notes:
Permissions
Manage Contact Attachments
Manage Events
Learn more about app permissions.
Method Declaration
Copy
function onAttachmentDeleted(handler: function): void;
Method Parameters
handlerfunction

handler(event: AttachmentDeletedEnvelope): void | Promise<void>

JavaScript
import { attachments } from "@wix/crm"; attachments.onAttachmentDeleted((event) => { // handle your event here });
Did this help?