> 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: onFulfillmentDeleted(event: FulfillmentDeletedEvent) # Method package: wixStoresBackend # Method menu location: wixStoresBackend --> Events --> onFulfillmentDeleted # Method Link: https://dev.wix.com/docs/velo/apis/wix-stores-backend/events/on-fulfillment-deleted.md # Method Description: **Deprecated.** This event will continue to work until September 4, 2024, but a newer version is available at [`wix-ecom-backend.Events.onFulfillmentsUpdated()`](https://www.wix.com/velo/reference/wix-ecom-backend/events/onfulfillmentsupdated). We recommend you migrate to the new [Wix eCommerce APIs](https://www.wix.com/velo/reference/wix-ecom-backend/introduction) as soon as possible. An event that fires when an order fulfillment is deleted. The `onFulfillmentDeleted()` event handler runs when the [deleteFulfillment()](https://www.wix.com/velo/reference/wix-stores-backend/deletefulfillment) function is called. > **Note:** Backend events don't work when previewing your site. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## An event when a fulfillment is deleted ```javascript // Place this code in the events.js file // of your site's Backend section. export function wixStores_onFulfillmentDeleted(event) { let orderId = event.orderId; let fulfillmentId = event.fulfillmentId; } /* Full event object: * * { * "orderId": "2c6ce6e5-8b40-4d2c-882a-edeb30fb3ec2", * "fulfillmentId": "4afd9175-b3c5-41b9-b3cc-e65b7544e84b", * "fulfillmentStatus": "NOT_FULFILLED" * } * */ ``` ---