---
title: "Get all users"
method: GET
path: "/v1/users"
tags: ["User"]
---

# Get all users

`GET /v1/users`

Returns the paginated list of users

## Query parameters

- `page_size` integer
- `page_token` string

## Response `200`

OK

- UserPage
  - `items` User[], required
    - `id` string, required — Unique identifier of the user.
    - `username` string, required — The unique username of the user.
    - `first_name` string, required — First name of the user.
    - `last_name` string, required — Last name of the user.
    - `email` string, email, required — Email address of the user.
    - `picture` string, uri, nullable, required — Profile picture of the user.
    - `title` string, nullable, required — Work title of the user.
    - `bio` string, nullable, required — Self description of the user.
    - `address` string, nullable, required — Working address of the user.
    - `phone` string, nullable, required — Phone number of the user.
    - `links` string[], nullable, required — Links to show on profile page.
    - `languages` Language[], required — Languages of the user.
    - `status` 'active' | 'pending' | 'inactive' | 'deleted', required — Status of the user.
    - `document_count` integer, nullable — Number of documents that belong to the user when projected.
    - `created_at` string, date-time, required — Date when the user was created.
    - `updated_at` string, date-time, nullable, required — Date when the user was updated.
  - `page_info` PageInfo, required — Cursor pagination metadata for a page of results.
    - `next_page_token` string, nullable — Opaque token for the next page. Omitted when has_more is false.
    - `has_more` boolean, required — Whether more results are available.
    - `total_count` integer, nullable — Optional total count when requested by the server.

## Other responses

- `400` — Bad request
- `401` — Unauthorized request
- `403` — Forbidden
- `500` — Internal Server Error

---

[API](https://skmtc.net/opcotech/apis/elemo-api.md) · [All operations](https://skmtc.net/opcotech/apis/elemo-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/opcotech/elemo-api/revisions/6965ecf3ab92/schema)
