Fulfillments
Contains shipment data for orders, including tracking numbers, carriers, and fulfillment status.
Columns
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | Long | True |
A unique numeric identifier for the fulfillment record. | |
| OrderId | Long | False |
Orders.Id |
The unique numeric identifier of the order associated with this fulfillment. |
| LocationId [KEY] | Long | False |
The unique numeric identifier of the location responsible for fulfilling the order. | |
| NotifyCustomer | Bool | False |
Indicates whether the customer should receive a notification when the fulfillment is created or updated. | |
| Status | String | False |
The current status of the fulfillment, such as 'pending', 'open', 'success', or 'cancelled'. | |
| Receipt | String | True |
Details about the fulfillment receipt, including confirmation or processing information from the fulfillment service. | |
| TrackingCompany | String | False |
The name of the carrier or shipping company handling the shipment. | |
| TrackingNumbers | String | False |
A comma-separated list of tracking numbers provided by the shipping company for this fulfillment. | |
| TrackingUrls | String | False |
A comma-separated list of URLs where customers can track their shipments. | |
| VariantInventoryManagement | String | True |
The name of the inventory management system or service used to manage this variant's inventory. | |
| CreatedAt | Datetime | True |
The date and time (ISO 8601 format) when the fulfillment record was created. | |
| UpdatedAt | Datetime | True |
The date and time (ISO 8601 format) when the fulfillment record was last updated. | |
| LineAggregate | String | False |
A JSON aggregate of all line items included in this fulfillment. | |
| OrderUpdatedAt | Datetime | True |
The date and time (ISO 8601 format) when the associated order was last updated. | |
| OrderCreatedAt | Datetime | True |
The date and time (ISO 8601 format) when the associated order was originally created. | |
| FulfillmentOrderId | Long | False |
The unique numeric identifier of the fulfillment order linked to this fulfillment record. |