Skip to main content
GET
/
v1
/
fulfillment_items
/
{id}
Retrieve
curl --request GET \
  --url https://{defaultHost}/v1/fulfillment_items/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "d6fac843-6786-4d09-8e65-7a743239c484",
  "object": "fulfillment_item",
  "quantity": 1,
  "g_weight": 0,
  "unit_g_weight": 0,
  "fulfillment": "e927b5e8-dcf0-4954-8fa4-a5564ce0f34e",
  "line_item": "ac1ad5dc-8f12-46e6-9faa-57a93c739e11",
  "created_at": 1767909703,
  "updated_at": 1767909703
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

200 - application/json

Success

id
string | null

The UUID of the specific object.

object
string

A string describing the object type returned.

quantity
integer

The quantity of products being fulfilled. This must be less than or equal to the remaining unfulfilled quantity of the associated line item.

g_weight
number

Total weight of all items (quantity * unit_g_weight) in grams.

unit_g_weight
number

Total weight of the product in grams.

fulfillment

Expandable – The associated fulfillment ID.

line_item

Expandable – The associated line item ID.

created_at
integer | null

Time at which the object was created. Measured in seconds since the Unix epoch.

updated_at
integer | null

Time at which the object was last updated. Measured in seconds since the Unix epoch.