> 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: Order Fulfillments # Type: Fulfillments Object # Link: https://dev.wix.com/docs/api-reference/business-solutions/e-commerce/orders/order-fulfillments/fulfillments-object.md ## Description: An order and its associated fulfillments. A fulfillment represents the shipment or delivery of order items. ## Schema: ```json Type: Fulfillments Object | type: OrderWithFulfillments Description: An order and its associated fulfillments. A fulfillment represents the shipment or delivery of order items. - name: orderId | type: string | description: Order ID. - name: fulfillments | type: Array | description: Fulfillments associated with the order. - name: id | type: string | description: Fulfillment ID. - name: value | type: string | description: - name: createdDate | type: string | description: Fulfillment creation date and time in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. - name: seconds | type: string | description: - name: nanos | type: number | description: - name: lineItems | type: Array | description: Line items being fulfilled. - name: id | type: string | description: Line item ID (mirrors the ID of the order line item). - name: quantity | type: number | description: Line item quantity. * If this property isn't passed on creation, it defaults to the number of items not already linked to a fulfillment. * If the order does not have the requested quantity of line items available to add to this fulfillment, the fulfillment will not be created and an error is returned. - name: status | type: string | description: The current status of the fulfillment process. Supported values: + `"Pending"` - Initial state when fulfillment is created but processing hasn't started. + `"Accepted"` - Order has been received and validated for fulfillment. + `"Ready"` - Items have been picked and packed, ready for shipping. + `"In_Delivery"` - Items have been handed over to the shipping carrier. + `"Fulfilled"` - Delivery has been completed successfully. The status typically progresses from Pending → Accepted → Ready → In_Delivery → Fulfilled. Status can be updated manually or automatically depending on your fulfillment workflow. - name: completed | type: boolean | description: Fulfillment handling complete. - name: value | type: boolean | description: ```