OrdersFulfillment Orders

Move Fulfillment Order

Move a fulfillment order to a new warehouse

Moves a fulfillment order (or specific line items) to a new warehouse location. Supports full moves (entire order) or partial moves (specific quantities).

POST
/shipos/fulfillment-orders/move
x-access-token<token>

In: header

Request Body

application/json

Request type for moving a 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 POST "https://example.com/shipos/fulfillment-orders/move" \  -H "Content-Type: application/json" \  -d '{    "fulfillment_order_id": "string",    "new_warehouse_id": "string"  }'
{  "success": true,  "fulfillment_order_id": "string",  "new_fulfillment_order_id": "string"}