---
title: "List all people"
method: GET
path: "/v2/people"
tags: ["People"]
---

# List all people

`GET /v2/people`

Returns a paginated list of people in the current workspace. Use `starting_after` or `ending_before` to page through large collections.

## Query parameters

- `limit` integer
- `starting_after` string
- `ending_before` string

## Response `200`

OK

- ListPeopleResponse
  - `object` string, required — Object discriminator for list responses; always `list`.
  - `data` Person[], required — Page of people, ordered newest first.
    - `id` string, required — Unique workspace user identifier (ULID).
    - `account_id` string, required — Linked account ID.
    - `email` string, required — Email address.
    - `display_name` string, required — Full display name (firstname + lastname).
    - `avatar_url` string — Profile image URL.
    - `roles` string[], required — Permission roles assigned to the person.
    - `groups` string[], required — Group IDs the person belongs to (non-support groups).
    - `status` 'PERSON_STATUS_UNSPECIFIED' | 'PERSON_STATUS_PENDING' | 'PERSON_STATUS_ACTIVE', required
    - `last_activity` string, date-time — Last activity timestamp.
    - `created_at` string, date-time, required — When the person was invited or added.
    - `updated_at` string, date-time, required — Last modification timestamp.
  - `has_more` boolean, required — Whether more people are available in the selected pagination direction.

---

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