Update Order Statuses - Sellercloud API Docs

Update Order Statuses

Table of Contents

  1. Overview
  2. Endpoint
  3. Request
  4. Actions
  5. Request Format
  6. Response

Overview

This endpoint is used to change order statuses by performing some of the bulk actions available on the Manage Orders page in Sellercloud.

To consume this 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 the order.

Endpoint

An example of such an endpoint for XX server is:

https:// xx.api.sellercloud.com/rest/api/Orders/Statuses

For your server endpoint will be:

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

Request

Parameter Data Type Description Required
OrderIDs list/int List of valid existing Sellercloud Order IDs. Yes
Action enum Provide one action from the list below.
The same action will be performed for the whole list of orders provided in the call.
Yes

Actions

The list below provides the enumeration values for the currently supported bulk actions:

Request Format

{
  "OrderIDs": [
    0
  ],
  "Action": 0
}

Response