---
title: "Get Workspace Members"
method: GET
path: "/workspaces/{workspace_id}/members"
tags: ["Members"]
---

# Get Workspace Members

`GET /workspaces/{workspace_id}/members`

List every member of the workspace.

## Path parameters

- `workspace_id` string, required

## Response `200`

Successful Response

- ApiV2CollectionResponseMemberSchema
  - `data` MemberSchema[], required
    - `id` string, required
    - `workspace_id` string, required
    - `role` string, required
    - `external_user_id` string, nullable, required
    - `first_name` string, nullable, required
    - `last_name` string, nullable, required
    - `email` string, required
    - `email_verified` boolean, required
    - `mfa_enabled` boolean, required
    - `identity_provider` string, required
  - `meta` MetaSchema, required
    - `status` 'success' | 'error', required
    - `errors` ErrorSchema[] — Non-empty exactly when `status` is "error".
      - `message` string, required
      - `status_code` integer, nullable — Matches this response's actual HTTP status code.
      - `occurred_at` string, nullable — ISO 8601 UTC timestamp.
      - `error_code` string, nullable — Machine-readable code for errors that need special handling (e.g. "SSO_REQUIRED") rather than being shown generically; null for most errors.
      - `error_metadata` BaseErrorMetadata
    - `warnings` WarningSchema[] — Can be non-empty even when `status` is "success" - a non-fatal issue with an otherwise-successful request.
      - `message` string, required
    - `request_source` string, nullable — Which auth mechanism served this request (e.g. "api_key", "pat"); null when not tracked for this endpoint.

## Other responses

- `4XX` — Client Error
- `5XX` — Server Error

---

[API](https://skmtc.net/zenlytic/apis/fastapi.md) · [All operations](https://skmtc.net/zenlytic/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/zenlytic/fastapi/revisions/8963663e2b8f/schema)
