> 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: onRsvpDeleted(event: RsvpDeletedEvent) # Method package: wixEventsBackend # Method menu location: wixEventsBackend --> Events --> onRsvpDeleted # Method Link: https://dev.wix.com/docs/velo/apis/wix-events-backend/events/on-rsvp-deleted.md # Method Description: A backend event that fires when an RSVP is deleted. The `onRsvpDeleted()` event handler runs when an RSVP is deleted. The received `RsvpDeletedEvent` object contains information about the deleted RSVP. > **Note:** Backend events are **not** fired when previewing your site. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## A backend event that occurs when an RSVP 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 wixEvents_onRsvpDeleted(event) { let eventId = event.eventId; let rsvpId = event.rsvpId; } /* Full event object: * { * "timestamp": "2020-04-27T13:37:22.444Z", * "eventId": "0adc383d-db6b-4c4a-8fb8-5fe77c6569bb", * "rsvpId": "4160c868-35b8-49f3-bff2-9d3912be9c0a", * "contactId": "2b1df22d-cfcf-447e-9afe-27b782aecd8c", * "memberId": "c2b48f6f-5964-46ad-9888-1e9d3f81b83b", * "anonymized": false * } */ ``` ---