Before you start, ensure that you have an API Key with
Teams -> Read permissionListing Your Teams
Retrieve the teams you belong to using theGET /user/teams endpoint.
limit of 100 results. Use query parameters to adjust:
Response
Response Fields
| Field | Type | Description |
|---|---|---|
teamId | string | Unique team identifier |
name | string | Team display name |
slug | string | Team URL slug |
role | string | Your role in the team (ADMIN or MEMBER) |
createdAt | string | ISO 8601 timestamp of when you joined the team |
Listing Team Members
Retrieve the members of a team using theGET /teams/{team_id}/members endpoint. You must be a member of the team to access this endpoint.
limit of 100 results. Use query parameters to adjust:
Response
Response Fields
| Field | Type | Description |
|---|---|---|
userId | string | Unique user identifier |
userName | string | User’s display name |
userEmail | string | User’s email address |
role | string | Team role (ADMIN or MEMBER) |
joinedAt | string | ISO 8601 timestamp of when the user joined the team |