Teams
Ask
List teams
GET/v1/teamsLists teams visible to the token owner.
Required scopes: team:read
Parameters
query.limit | integerMaximum number of records to return. Defaults to 50 and is capped at 200. |
|---|---|
query.cursor | stringCursor returned by page.nextCursor from the previous list response. |
Response 200
data | object[] |
|---|---|
data[].id | string:uuidTeam identifier. |
data[].name | stringTeam display name. |
data[].role | stringRole held by the token owner on the team. |
data[].status | "active" | "invited" | "departed" | "removed"Membership status for the token owner on this team. |
data[].organizationStatus | "active" | "archived"Team organization lifecycle status. |
data[].version | numberCurrent team aggregate version. |
data[].cursor | numberLatest event-ledger cursor projected into this team record. |
page | object |
page.limit | integerMaximum number of records returned in this page. |
page.nextCursor | string | nullCursor to pass as the next request's cursor query parameter, or null when there are no more results. |
meta | object |
meta.cursor | number | nullHighest record cursor represented by this response. |