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": "f991c4fa-744e-4f80-8af2-69f889c88388",
      "object": "fulfillment_item",
      "quantity": 1,
      "g_weight": 0,
      "unit_g_weight": 0,
      "fulfillment": "ec751ff3-d874-44e7-8043-f61b49c5c601",
      "line_item": "404acfa1-859b-4c9c-88a1-a37851235b76",
      "created_at": 1767909702,
      "updated_at": 1767909702
    }
  ]
}

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.