---
title: "List Users"
method: GET
path: "/users"
tags: ["User"]
---

# List Users

`GET /users`

Returns the list of all the Users within your Organization.

## Query parameters

- `after` string
- `limit` integer
- `email` object — Filter by email.

## Response `200`

OK

- GetUsers200Response
  - `meta` Pagination, required — Metadata about the response.
    - `next_cursor` string, nullable, required — Token to get the next page of results. If `null`, there are no more pages.
  - `data` User[], required
    - `id` string, uuid, required — Unique identifier of the User.
    - `email` string, email, required — Email of the User.
    - `locale` 'en' | 'fr' | 'de' | 'it' | 'nl' | 'es' | 'pl' | 'pt' | 'ro', required — Locale of the User.
    - `status` string, required — The status of the User. Upon receiving the webhook event, status will always be `completed`.
    - `is_active` boolean, required — Whether the User is active.
    - `role` 'member' | 'admin', required — User’s role.

## Other responses

- `400` — Bad request
- `401` — Access unauthorized
- `405` — This method is not allowed
- `429` — Too Many Requests, please try again later.
- `500` — Internal Server Error

---

[API](https://skmtc.net/yousign/apis/public-api-v3.md) · [All operations](https://skmtc.net/yousign/apis/public-api-v3/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/yousign/public-api-v3/revisions/8d258c0b45d6/schema)
