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

# List organization users

`GET /v1/users`

Returns a paginated list of users (organization members) who have access to at least one of the workspaces accessible by the API key. Use the `organizationMembershipId` to create sequences. Use the `workspaceIds` query parameter to narrow results to a subset of those workspaces.

## Query parameters

- `workspaceIds` string
- `page` number
- `limit` number

## Response `200`

Paginated list of users

- PaginatedUsersDto
  - `data` UserDto[], required — Array of users
    - `id` string, required — Unique identifier of the user
    - `organizationMembershipId` string, required — Unique identifier of the organization membership. Use this ID when creating sequences.
    - `firstName` object, nullable — First name of the user
    - `lastName` object, nullable — Last name of the user
    - `email` string, required — Email address of the user
    - `role` 'ADMIN' | 'MEMBER' | 'MANAGER', required — Role of the user in the organization
    - `status` 'ACTIVE' | 'INACTIVE' | 'PENDING', required — Status of the user membership in the organization
  - `total` number, required
  - `page` number, required
  - `limit` number, required
  - `totalPages` number, required

## Other responses

- `401` — Invalid or missing API key
- `403` — One or more requested workspaceIds are outside the API key scope

---

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