Update Orders Dropship Status - Sellercloud API Docs

Update Orders Dropship Status

Table of Contents

Overview

Endpoint is used for updating order dropship status in bulk. In order to do that you must be an authenticated user. For information on how you can authenticate, see: Authentication

Endpoint

Example for such endpoint for TT server is https://tt.api.sellercloud.com/rest/api/Orders/DropshipStatus

For your server, endpoint will be:

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

Request

Parameter Data Type Description Is Required
Orders List ID of existing order Yes
Status DropshipStatus Enumeration. Indicates the dropship status of the order.
Possible dropship statuses can be found here.
Yes

Example Request

{
   "Orders":
   [
        1001,
        1002,
        1003
   ],
    "DropshipStatus": "None"
}

Response

Example Response

Response Body

[
   1001
]

Response Code

200