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": "424e15a4-1285-4272-acea-961c8bd841d3",
      "object": "fulfillment_item",
      "quantity": 1,
      "g_weight": 0,
      "unit_g_weight": 0,
      "fulfillment": "1d3ca455-a6cf-4eab-a276-34fde87e4653",
      "line_item": "5724272b-8775-4766-8350-b9f13ee9f2ea",
      "created_at": 1776176530,
      "updated_at": 1776176530
    }
  ]
}

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.