fulfillment
An order fulfillment, which includes information like the line items being fulfilled and shipment tracking.
Properties
A timestamp for when the fulfillment was created.
TipUse the
datefilter to format the timestamp.Tip:Use the
datefilter to format the timestamp.Tip: Use the <a href="/docs/api/liquid/filters/date"><code>date</code> filter</a> to format the timestamp.
The line items in the fulfillment.
The fulfillment's tracking number.
If there's no tracking number, then
nilis returned.An array of the fulfillment's tracking numbers.
{
"created_at": "2022-06-15 17:08:30 -0400",
"fulfillment_line_items": [
{
"quantity": 2,
"line_item": "LineItemDrop"
},
{
"quantity": 1,
"line_item": "LineItemDrop"
}
],
"item_count": 3,
"tracking_company": "Canada Post",
"tracking_number": "01189998819991197253",
"tracking_numbers": [
"01189998819991197253"
],
"tracking_url": "https://www.canadapost-postescanada.ca/track-reperage/en#/search?searchFor=01189998819991197253"
}
Example
{
"created_at": "2022-06-15 17:08:30 -0400",
"fulfillment_line_items": [
{
"quantity": 2,
"line_item": "LineItemDrop"
},
{
"quantity": 1,
"line_item": "LineItemDrop"
}
],
"item_count": 3,
"tracking_company": "Canada Post",
"tracking_number": "01189998819991197253",
"tracking_numbers": [
"01189998819991197253"
],
"tracking_url": "https://www.canadapost-postescanada.ca/track-reperage/en#/search?searchFor=01189998819991197253"
}Was this section helpful?