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": "08c75d57-fa2e-4082-a6df-f0cff64c9548",
      "object": "fulfillment_item",
      "quantity": 1,
      "g_weight": 0,
      "unit_g_weight": 0,
      "fulfillment": "d20589c2-78a2-4a44-a560-bc10c6654fbc",
      "line_item": "df9b980c-9f25-4ed1-9240-46af7d9cce88",
      "created_at": 1771429867,
      "updated_at": 1771429867
    }
  ]
}

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.