> For the complete documentation index, see [llms.txt](https://uprism-io.gitbook.io/uprism-io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://uprism-io.gitbook.io/uprism-io/rest-api/sub-user/get-sub-user-list.md).

# Get Sub User List

사용자 리스트 조회 API

## Get Subuser List

<mark style="color:blue;">`GET`</mark> `https://uprism.io:30443/v1/users`

서브 사용자 리스트를 조회해오는 API

#### Headers

| Name          | Type   | Description               |
| ------------- | ------ | ------------------------- |
| Authorization | string | "Bearer " + {accessToken} |

{% tabs %}
{% tab title="200 successfully retrieved." %}

```javascript
{
    "code": 200,
    "message": "success",
    "response": [
        {
            "user_id": "uprism.test0001",
            "email": "test@email.com",
            "user_name": "테스트1"
        },
        {
            "user_id": "uprism.test0002",
            "email": "test@email.com",
            "user_name": "테스트2"
        },
        {
            "user_id": "uprism.test0003",
            "email": "test@email.com",
            "user_name": "테스트3"
        },
        {
            "user_id": "uprism.test0004",
            "email": "test@email.com",
            "user_name": "테스트4"
        }
    ]
}
```

{% endtab %}

{% tab title="401 Invalid token" %}

```javascript
{
    "error": "invalid_token",
    "error_description": "Invalid access token: ********-****-****-****-************"
}
```

{% endtab %}
{% endtabs %}
