> 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: onFulfillmentCreated(event: FulfillmentCreatedEvent) # Method package: wixStoresBackend # Method menu location: wixStoresBackend --> Events --> onFulfillmentCreated # Method Link: https://dev.wix.com/docs/velo/apis/wix-stores-backend/events/on-fulfillment-created.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 created. The `onFulfillmentCreated()` event handler runs when one of the following occurs: + The [createFulfillment()](https://www.wix.com/velo/reference/wix-stores-backend/createfulfillment) function is called. + A [tracking number](https://support.wix.com/en/article/wix-stores-adding-a-tracking-number-to-a-store-order) is added to an order. > **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 created ```javascript // Place this code in the events.js file // of your site's Backend section. export function wixStores_onFulfillmentCreated(event) { const orderId = event.orderId; const fulfillmentId = event.fulfillmentId; const trackingNumber = event.trackingInfo.trackingNumber; } /* Full event object: * * { * "orderId": "2c6ce6e5-8b40-4d2c-882a-edeb30fb3ec2", * "fulfillmentId": "4afd9175-b3c5-41b9-b3cc-e65b7544e84b", * "dateCreated": "2020-02-22T10:41:32.487Z", * "buyerInfo": { * "id": "a158c93a-2f1e-4e86-a38f-475931a337ce", * "identityType": "MEMBER", * "firstName": "John", * "lastName": "Doe", * "phone": "5555555555", * "email": "john@doe.com" * }, * "fulfillmentStatus": "FULFILLED", * "trackingInfo": { * "trackingNumber": "1234", * "shippingProvider": "fedex", * "trackingLink": "https://www.fedex.com/apps/fedextrack/?action=track&trackingnumber=1234" * } * } * */ ``` ---