---
title: "List active organization members"
method: GET
path: "/orgs/{identifier}/members"
tags: ["Organizations"]
---

# List active organization members

`GET /orgs/{identifier}/members`

Returns every active member of the organization in a single response. This list is not paginated and accepts no limit or cursor parameter. Members are sorted by role (owner first, then admin, manager, and member; unrecognized roles tie with member). Each row's `id` is the membership row ID, not the user ID, and the row carries the member's API-safe user profile, role label, and join timestamp. Visible only when the organization profile is public, or when the API key owner is an active member of the organization; otherwise this returns 403. A non-existent or inactive organization returns 404. Requires orgs.profile:read.

## Path parameters

- `identifier` string, required — Organization slug or Convex organization ID.

## Response `200`

Organization members.

- object — Envelope containing members, count, and a response timestamp.
  - `members` ApiMember[], required
    - `id` string, required — Membership row ID.
    - `user` ApiUserProfile, required — API-safe public user profile.
      - `id` string, required — User ID.
      - `username` string, nullable, required — User handle, when set.
      - `name` string, nullable, required — Display name, when set.
      - `avatarUrl` string, nullable, required — Avatar image URL, when set.
      - `bannerUrl` string, nullable — Banner image URL, when set.
      - `isVerified` boolean
      - `bio` string, nullable — Public profile bio.
      - `visibility` 'public' | 'limited' | 'private', required — Public profile visibility setting.
      - `createdAt` string, nullable, required — ISO 8601 timestamp.
    - `role` string, required — Role label within the team or organization.
    - `joinedAt` string, nullable, required — ISO 8601 timestamp.
  - `count` integer, required
  - `timestamp` string, required — ISO 8601 timestamp.

## Other responses

- `401` — Missing or invalid API key.
- `403` — API key lacks the required permission.
- `404` — Resource not found.
- `429` — Rate limited.
- `500` — Internal server error.

---

[API](https://skmtc.net/teambattles/apis/teambattles-api.md) · [All operations](https://skmtc.net/teambattles/apis/teambattles-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/teambattles/teambattles-api/versions/2ffe8fb53b7d/schema)
