Skip to main content

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.

Tip

Use the date filter to format the timestamp.

Anchor to
fulfillment_line_items
array of line_item

The line items in the fulfillment.

The number of items in the fulfillment.

Anchor to
tracking_company

The name of the fulfillment service.

Anchor to
tracking_number

The fulfillment's tracking number.

If there's no tracking number, then nil is returned.

Anchor to
tracking_numbers
array of string

An array of the fulfillment's tracking numbers.

Anchor to
tracking_url

The URL for the fulfillment's tracking number.

If there's no tracking number, then nil is returned.

{
"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?