> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # Method name: onLabelDeleted(event: LabelDeleted) # Method package: wixCrmV2 # Method menu location: wixCrmV2 --> onLabelDeleted # Method Link: https://dev.wix.com/docs/velo/events-service-plugins/crm/events/on-label-deleted.md # Method Description: Triggered when a label is deleted. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## An event fired when a label is deleted ```javascript // Place this code in the events.js file // of your site's Backend section. // Add the file if it doesn't exist. export function wixContacts_onLabelDeleted(event) { console.log('Label deleted', event); } /* Full event object: * { * "metadata": { * "id": "64c54bac-5c9c-42b6-b43b-9143e6814b50", * "entityId": "custom.customer-group-3", * "eventTime": "2024-01-11T12:47:31.862945419Z", * "triggeredByAnonymizeRequest": false * } * } */ ``` ---