> 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 ## Resource: OrderFulfillments ## Article: Introduction ## Article Link: https://dev.wix.com/docs/velo/apis/wix-ecom-backend/order-fulfillments/introduction.md ## Article Content: --- title: Introduction --- # Introduction The Order Fulfillments API allows a site visitor to retrieve and manage eCommerce order fulfillments. An order fulfillment refers to the process of preparing and delivering orders to customers. This process usually involves receiving orders, picking the products from inventory, packing them securely, providing tracking information, and shipping them to the customer's address. A fulfillment object contains information about an order's shipping provider, tracking details, and the line items associated with the fulfillment. To use the Order Fulfillments API, import `{ orderFulfillments }` from the `wix-ecom-backend` module: ```javascript import { orderFulfillments } from 'wix-ecom-backend'; ``` ## Permissions information The following functions in the Order Fulfillments API are restricted and only run if you elevate permissions using the `wix-auth` [`elevate()`](https://dev.wix.com/docs/velo/api-reference/wix-auth/elevate.md) function: + [`createFulfillment()`](https://dev.wix.com/docs/velo/api-reference/wix-ecom-backend/order-fulfillments/create-fulfillment.md) + [`bulkCreateFulfillments()`](https://dev.wix.com/docs/velo/api-reference/wix-ecom-backend/order-fulfillments/bulk-create-fulfillments.md) + [`updateFulfillment()`](https://dev.wix.com/docs/velo/api-reference/wix-ecom-backend/order-fulfillments/update-fulfillment.md) + [`deleteFulfillment()`](https://dev.wix.com/docs/velo/api-reference/wix-ecom-backend/order-fulfillments/delete-fulfillment.md)
Warning: Elevating a function allows it to be called by any site visitor. Exercise caution to prevent security vulnerabilities.