Skip to main content
GET
/
v1
/
fulfillment_items
List
curl --request GET \
  --url https://{defaultHost}/v1/fulfillment_items \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "pagination": {
    "count": 1,
    "limit": 20,
    "page": 1,
    "url": "/v1/fulfillment_items"
  },
  "data": [
    {
      "id": "d56d4a2c-e0c6-4a22-a186-b9cb11bea8d4",
      "object": "fulfillment_item",
      "quantity": 1,
      "g_weight": 0,
      "unit_g_weight": 0,
      "fulfillment": "dd92a4e3-17a7-419e-b595-b8c8251775e1",
      "line_item": "bd7c61fa-afc3-49cb-a87f-066c5b9214f4",
      "created_at": 1772112950,
      "updated_at": 1772112950
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

fulfillment_ids[]
string[]

Only return objects that belong to the given fulfillments.

ids[]
string[]

Only return objects with the given IDs.

limit
integer

A limit on the number of items to be returned, between 1 and 100.

page
integer

The page of items you want returned.

Response

200 - application/json

Success

object
string

A string describing the object type returned.

pagination
object
data
array

An array of objects.