Get Order Saved Views - Sellercloud API Docs
Overview
You can use this endpoint to retrieve the existing Order Saved Views. To consume this endpoint, you must be an Authenticated User. As soon as you receive a valid token, you need to pass it to the call.
Endpoint
An example of this endpoint for server XX is:
https:// xx.api.sellercloud.com/rest/api/Orders/Views
For your server, the endpoint will be:
https:// {your_server_id}.api.sellercloud.com/rest/api/Orders/Views
Request
- Method Type: HttpGet
- Authorization: Use Bearer Token + token received from token authentication
- Header info: Content-Type: application/json
Response
- If the user is authenticated and provides a valid page number and page size, then the response will be Status Code 200 => OK.
- If the user is not authenticated, then the response will be Status Code 401 => Not Valid Token.
- In case of an error, the response will be Status Code 500 => Internal Server Error.
Response Body
[
{
"ID": 1,
"Name": "Test Saved View"
},
{
"ID": 2,
"Name": "Second view"
}
]