Overview
Endpoint that is presented in this article is used for getting catalog saved views. User can prepare different combinations of filters and custom columns on manage catalog page in Delta UI. The already saved combinations of saved views can be retrieved in bulk using current endpoint.
In order to consume the endpoint you must:
- Be authenticated user
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 getting saved views.
Endpoint
For your server endpoint will be:
https://{your_server_id}.api.sellercloud.com/rest/api/Catalog/Views
Request
- Method Type: HttpGet
- Authorization: Use Bearer Token + token received from token authentication
- Header info: Content-Type: application/json
Response
- If server error appears, then response will be with status code 500 => Internal Server Error
- If getting order saved views is successful, response will be with following format:
[ { "ID": 1, "Name": "Test Saved View" }, { "ID": 2, "Name": "Second view" } ]