OrdersFulfillment Orders

Split Fulfillment Order

Split a fulfillment order

Splits a fulfillment order into two separate fulfillment orders. Specify which line items and quantities to move to the new order. The original order will retain the remaining quantities.

Any allocations on the split quantities will be transferred to the new order. Both orders will be re-allocated after the split.

POST
/shipos/fulfillment-orders/{fulfillment_order_id}/split
x-access-token<token>

In: header

Path Parameters

fulfillment_order_id*string

UUID of the fulfillment order to split

Request Body

application/json

Request type for splitting 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/string/split" \  -H "Content-Type: application/json" \  -d '{    "line_items": [      {        "core_fulfillment_order_line_item_id": "string",        "quantity": 0.1      }    ]  }'
{  "success": true,  "message": "string",  "original_fulfillment_order_id": "string",  "new_fulfillment_order_id": "string"}