OpenAPI 3.1.02026-08-143874115.7 MB

a84d4905fdbb

Members

Retrieve Member

Retrieves a member by ID. Accessible to the account and to the member's own user.

get/members/{id}

Response

member retrieved

access_level'no_access' | 'admin' | 'customer' required

What the member can reach on the account: customer for paying members, admin for team members, no_access once every grant has lapsed.

account_idstring required

The account this member belongs to, prefixed biz_.

created_atstring required

When the member record was created, as an ISO 8601 timestamp.

idstring required

Member ID, prefixed mber_.

joined_atstring required

When the member first joined the account, as an ISO 8601 timestamp.

last_accessed_atstring nullable required

When the member last opened the account's content, as an ISO 8601 timestamp. null if they never have.

status'joined' | 'left' required

joined while the member is part of the account, left after they leave.

Example response

{
  "access_level": "admin",
  "account_id": "biz_xxxxxxxxxxxxxx",
  "created_at": "2026-01-01T12:00:00.000Z",
  "id": "mber_xxxxxxxxxxxxxx",
  "joined_at": "2026-01-01T12:00:00.000Z",
  "last_accessed_at": "2026-01-01T12:00:00.000Z",
  "status": "joined",
  "user": {
    "id": "user_xxxxxxxxxxxxxx",
    "name": "Dana Whitfield",
    "profile_picture": {
      "url": "https://assets-2-rough.whop.com/uploads/image/2026-01-01/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
    },
    "username": "danawhitfield"
  }
}