---
title: "List Team Members"
method: GET
path: "/team_members"
tags: ["Team Members"]
---

# List Team Members

`GET /team_members`

Lists an account's team members, including pending invites (`status: "pending"`, `ausri_` ids; `user` is `null` for invites sent to an email with no Whop account yet). For accepted members, `email` requires the `company:authorized_user:email:read` scope and is `null` otherwise.

## Query parameters

- `account_id` string, required
- `status` 'joined' | 'pending'
- `user_id` string
- `role` 'owner' | 'admin' | 'sales_manager' | 'moderator' | 'advertiser' | 'app_manager' | 'support' | 'manager' | 'custom'
- `created_before` string
- `created_after` string
- `order` 'created_at'
- `direction` 'asc' | 'desc'
- `first` integer
- `after` string

## Response `200`

Team members listed.

- object
  - `data` TeamMember[], required
    - `account_id` string, required — The account this membership belongs to, prefixed `biz_`.
    - `created_at` string, required — When the member joined or the invite was sent, as an ISO 8601 timestamp.
    - `email` string, nullable, required — The member's email address. For accepted members, `null` unless the caller holds the email read scope; for invites, the invited address.
    - `id` string, required — Team member ID — `ausr_` for accepted members, `ausri_` for pending invites.
    - `is_agent` boolean, required — Whether this member is an agent (app-controlled account) rather than a human team member. Always `false` for invites.
    - `role` 'owner' | 'admin' | 'sales_manager' | 'moderator' | 'advertiser' | 'app_manager' | 'support' | 'manager' | 'custom', required — The member's role on the account. `custom` means a bespoke dashboard-managed role; the API can read but not grant it.
    - `status` 'joined' | 'pending', required — `joined` for accepted members, `pending` while the invite is pending.
    - `updated_at` string, required — When the membership was last updated, as an ISO 8601 timestamp.
    - `user` UserSummary, required
      - `id` string, required — User ID, prefixed `user_`.
      - `name` string, nullable, required — Display name.
      - `profile_picture` UserProfilePicture, required
        - `url` string, required — Avatar image URL. Always present — a generated placeholder when the user set no picture.
      - `username` string, required — Public username.
  - `page_info` object, required
    - `end_cursor` string, nullable, required
    - `has_next_page` boolean, required
    - `has_previous_page` boolean, required
    - `start_cursor` string, nullable, required

## Other responses

- `400` — Invalid Parameters
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Resource not found

---

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