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

# List organization users

`GET /api/users`

Returns a paginated list of users that belong to the organization the API key is scoped to, ordered by email. Optionally filters by a case-insensitive email substring match. Requires the `workspace:read` scope.

## Query parameters

- `email` string[]
- `page` number
- `pageSize` number

## Response `200`

A page of users in the organization.

- object
  - `results` OrganizationUserDto[], required
    - `id` string, required — Unique identifier of the user.
    - `email` string, required — Email address of the user.
  - `pagination` PaginationMetaDto, required
    - `totalPages` number, required — Total number of pages available for the current page size.
    - `currentPage` number, required — The 1-based page number of this response.
    - `totalCount` number, required — Total number of items matching the query across all pages.
    - `pageSize` number, required — Maximum number of items returned per page.

## Other responses

- `400` — Invalid filter/pagination parameters.
- `401` — Missing or invalid API key.
- `403` — The API key lacks the required scope, or the organization plan does not include public API access.
- `429` — Rate limit exceeded for the organization. See the X-RateLimit-* and Retry-After response headers.
- `500` — An unexpected error occurred.

---

[API](https://skmtc.dev/vizcom/apis/vizcom-api.md) · [All operations](https://skmtc.dev/vizcom/apis/vizcom-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/vizcom/vizcom-api/revisions/bfa4f498f985/schema)
