Skip to main content
GET
/
v1
/
fulfillments
List
curl --request GET \
  --url https://{defaultHost}/v1/fulfillments \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "pagination": {
    "count": 1,
    "limit": 20,
    "page": 1,
    "url": "/v1/fulfillments"
  },
  "data": [
    {
      "id": "321c966d-69a4-4c0c-ad43-e5fc91983fbd",
      "object": "fulfillment",
      "notifications_enabled": false,
      "number": "0000-F",
      "shipment_status": "unshipped",
      "g_weight": 0,
      "order": "ddec567d-2012-44a4-a6b1-b8ab7e76b220",
      "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.

Query Parameters

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.

order_ids[]
string[]

Only return objects that belong to the given orders.

page
integer

The page of items you want returned.

shipment_status[]
string[]

Only return objects with the given shipment status.

Response

200 - application/json

Success

object
string

A string describing the object type returned.

pagination
object
data
array

An array of objects.