# Get RMA Saved Views

## Overview

Endpoint that is presented in this article is used for getting RMA saved views.

In order to consume the endpoint you must:

- Be authenticated user

For information on how you can authenticate, see: [Authentication](https://developer.sellercloud.com/dev-article/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

Example for such endpoint for TT server is

[https://tt.api.sellercloud.com/rest/api/Rma/Views](https://tt.api.sellercloud.com/rest/api/Rma/Views)

For your server endpoint will be:

https://{your_server_id}.api.sellercloud.com/rest/api/Rma/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"
    }
]
```
