List 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. Listing role=workforce is also allowed with the bounty:create scope.
Query parameters
Account ID, prefixed biz_.
Only return members with this status: joined (accepted members) or pending (pending invites). Both are returned by default.
Only return the membership for this user ID, prefixed user_.
Only return members with this role. custom matches members on a dashboard-managed custom role.
Only return members added before this ISO 8601 timestamp.
Only return members added after this ISO 8601 timestamp.
Field used to sort members.
Sort direction. Defaults to desc.
Number of members to return. Defaults to 20; maximum 100.
Cursor for the next page of members.
Number of members to return from the end of the window.
Cursor to paginate backwards from.
Response
Team members listed.
Example response
{
"data": [
{
"account_id": "biz_xxxxxxxxxxxxxx",
"created_at": "2026-01-01T12:00:00.000Z",
"email": "marcus@shinetime.example",
"id": "ausr_xxxxxxxxxxxxxx",
"role": "moderator",
"status": "joined",
"updated_at": "2026-01-01T12:00:00.000Z",
"user": {
"id": "user_xxxxxxxxxxxxxx",
"name": "Dana Whitfield",
"profile_picture": {
"url": "https://ui-avatars.com/api/"
},
"username": "danawhitfield"
}
}
],
"page_info": {
"end_cursor": "Mw",
"start_cursor": "MQ"
}
}Changes
Changed in 4 of the 41 revisions of this API.19
- ○
added the new optional
queryrequest parameterbeforenew-optional-request-parameter
- ○
added the new optional
queryrequest parameterlastnew-optional-request-parameter
- ○
added the required property
data/items/authorized_roleto the response with the200statusresponse-required-property-added
- ○
- ●
added the new
workforceenum value to thedata/items/roleresponse property for the response status200response-property-enum-value-added
- ○
added the new enum value
workforceto thequeryrequest parameterrolerequest-parameter-enum-value-added
- ●
- ○
added the optional property
error/codeto the response with the400statusresponse-optional-property-added
- ○
added the optional property
error/codeto the response with the401statusresponse-optional-property-added
- ○
added the optional property
error/codeto the response with the403statusresponse-optional-property-added
- ○
added the optional property
error/codeto the response with the404statusresponse-optional-property-added
This revision also has 9 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ○
- ○
endpoint added
endpoint-added
This revision also has 1 change that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ○