FulfillmentPicking Sessions

Get fulfillment order

Get Fulfillment Order

Retrieves a specific fulfillment order within a picking session. Returns detailed information including line items, product details, allocations, and tote assignment.

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

In: header

Path Parameters

picking_session_id*string

The ID of the picking session

fulfillment_order_id*string

The ID of the fulfillment order

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/string"
{  "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",  "picking_session_fulfillment_order_line_items": [    {      "picking_session_id": "string",      "product_id": "string",      "fulfillment_order_id": "string",      "core_fulfillment_order_line_item_id": "string",      "image_url": "string",      "sku": "string",      "name": "string",      "unpacked_quantity": 0.1,      "total_quantity": 0.1,      "updated_at": "2019-08-24T14:15:22Z",      "created_at": "2019-08-24T14:15:22Z",      "id": "string",      "picking_session_fulfillment_order_line_item_allocations": [        {          "picking_session_fulfillment_order_line_item_id": "string",          "location_name": "string",          "location_id": "string",          "product_stock_id": "string",          "product_id": "string",          "remaining_quantity": 0.1,          "total_quantity": 0.1,          "updated_at": "2019-08-24T14:15:22Z",          "created_at": "2019-08-24T14:15:22Z",          "id": "string"        }      ]    }  ]}