Split Order - Sellercloud API Docs

Overview

This endpoint can be used to split existing order by moving some of its items to a new order.

In order to consume the endpoint you must:

For information on how you can authenticate, see: Authentication

As soon as you do authentication and receive a valid token, it needs to be passed to the call.

Endpoint

Example for such endpoint for TT server is

https://tt.api.sellercloud.com/rest/api/Orders/{id}/Split

For your server endpoint will be:

https://{your_server_id}.api.sellercloud.com/rest/api/Orders/{id}/Split

Request

Parameter Data Type Description Is Required
Items List List of order items to move to a new order. Yes
ItemToMove.OrderItemId int ID of the order item which we want to move to a new order. Yes
ItemToMove.QtyToMove int Quantity to move.
Should not be greater than the item quantity in the order.
Yes
ItemToMove.KitComponent List List of kit components can be provided if we want to move only a kit component. No
KitComponent.ProductId string Product Id of the kit component that we want to move to a new order. Yes
KitComponent.QtyToMove int Quantity to move.
Should not be greater than the order kit component quantity.
Yes

Response

Response Body

{
"SplitToOrderID": int
}