Add Items to existing order - Sellercloud API Docs

Overview

The endpoint presented in this article is for adding new items to an existing 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 on the call when adding new items.

Endpoint

Example for such endpoint for TT server is

https://tt.api.sellercloud.com/rest/api/Orders/{orderID}/items

For your server, endpoint will be:

https://{your_server_id}.api.sellercloud.com/rest/api/Orders/{orderID}/items

Request

Data Type Description
[
{
“ProductID”: “string”,
“ProductName”: “string”,
“SitePrice”: 0,
“DiscountValue”: 0,
“DiscountType”: “FixedAmount”,
“Qty”: 0,
“LineTaxTotal”: 0,
“FinalValueFee”: 0,
“ReferenceID”: “string”
}
]
Information about the Product.
ProductID and Qty are mandatory fields.
Reference ID is an optional field for storing an alternative identifier for the item. (like the Channel’s order item identifier)

Important:

Adding an item that has the same SKU as an existing order item will create a new, separate item on the order.

To update an already-existing order item, use this endpoint instead.

Response

"Successfully saved the order items."