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

# List Users

`GET /v1/users`

List users in the authenticated organization.

Requires the `users:read` scope on the API key.

## Query parameters

- `page` integer — Page number.
- `size` integer — Number of items per page.
- `sort_by` string, nullable — Field to sort by.
- `sort_order` 'asc' | 'desc'

## Response `200`

Successful Response

- PublicPaginationEnvelopePublicUserOutput
  - `items` PublicUserOutput[], required — Records on this page.
    - `id` string, uuid, required — Unique identifier of the user. Use as assignee_user_id or owner_user_id.
    - `email` string, nullable — User's email address.
    - `name` string, nullable — User's display name.
    - `role` 'OWNER' | 'ADMIN' | 'MEMBER', required
  - `total_count` integer, required — Total number of records matching the query.
  - `total_pages` integer, required — Total number of pages.
  - `has_more` boolean, required — Whether more pages remain after the current one.

---

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