FulfillmentPicking Sessions

Get fulfillment orders

Get Fulfillment Orders

Retrieves all fulfillment orders within a picking session. Returns paginated, detailed information about each order including line items, product details, and allocations.

GET
/shipos/v1/picking-sessions/{picking_session_id}/fulfillment-orders
x-access-token<token>

In: header

Path Parameters

picking_session_id*string

The ID of the picking session

Query Parameters

status?string

Optional filter by fulfillment order status (PENDING or FULFILLED)

Value in

  • "PENDING"
  • "FULFILLED"
page?number

Page number for pagination (0-based, default 0)

Formatdouble
Default0
limit?number

Maximum number of results to return per page (1-50, default 10)

Formatdouble
Default10
order_by?string

Field to order by (order_number, created_at, or updated_at, default order_number)

Default"order_number"

Value in

  • "order_number"
  • "created_at"
  • "updated_at"
order?string

Sort order (asc or desc, default asc)

Value in

  • "asc"
  • "desc"

Response Body

application/json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

curl -X GET "https://example.com/shipos/v1/picking-sessions/string/fulfillment-orders"
{  "data": [    {      "created_at": "2019-08-24T14:15:22Z",      "updated_at": "2019-08-24T14:15:22Z",      "status": "PENDING",      "fulfillment_order_id": "string",      "tote_id": "string",      "tote_name": "string",      "picking_session_id": "string",      "order_number": "string",      "packing_started_at": "2019-08-24T14:15:22Z",      "packing_completed_at": "2019-08-24T14:15:22Z",      "packed_by_user_id": "string",      "packed_by_user_name": "string"    }  ],  "meta": {    "page": 0.1,    "page_size": 0.1,    "has_next_page": true,    "has_previous_page": true,    "start_index": 0.1,    "end_index": 0.1  }}