---
title: "List Organization Members"
method: GET
path: "/api/v1/organizations/members"
tags: ["Team Management"]
---

# List Organization Members

`GET /api/v1/organizations/members`

Returns all members of your organization, including user details (email, first/last name) and their organization role. Requires a global API key.

## Response `200`

Successful response with the list of members

- object
  - `members` OrgMemberListItem[], required
    - `user_id` string, uuid, required — Unique identifier of the user
    - `email` string, email, required — The user's email address
    - `first_name` string, nullable — The user's first name, if set
    - `last_name` string, nullable — The user's last name, if set
    - `role` string, required — The user's role in the organization, as its slug: `admin`, `viewer`, `editor`, `billing`, or a custom role's id (e.g. `contentmanager`). `admin` and `viewer` are unchanged from prior versions.
    - `created_at` string, date-time, required — When the org membership was created (UTC)

## Other responses

- `401` — Unauthorized - Invalid or missing API key
- `403` — Forbidden - Global API key required
- `500` — Internal server error

---

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