Update existing order items - Sellercloud API Docs

Update existing order items

Overview

The endpoint presented in this article is used for updating existing order items of 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 updating 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
[
{
“OrderItemID”: 0,
“ProductID”: “string”,
“ProductName”: “string”,
“SitePrice”: 0,
“DiscountValue”: 0,
“DiscountType”: “FixedAmount”,
“Qty”: 0
}
]
Information about the Product.
OrderItemID is the only mandatory field.
Only include the fields that you would like to update. Fields excluded from the request will not be changed on the item in Sellercloud.

Response

    "Items updated successfully"
    ```