v11
latestOpenAPI 3.1.12026-08-03174162.0 MBTeam Members
List team members with cursor-based pagination
Returns active team members for a specific team with cursor pagination. Team key can be ID or slug. For pending invitations, use the team invites endpoint instead.
get/teams/{key}/members
Path parameters
keystring required
Team identifier (ID or slug)
Query parameters
querystring
Search query to filter members by name or email. Case-insensitive partial match
limitinteger
Maximum number of team members to return per request (1-100, default: 20)
Example:20
cursorstring
Pagination cursor from previous response. Used to fetch next page of results
Response
OK
Example response
{
"members": [
{
"permissions": [
"event.read",
"event.write",
"order.read"
]
}
],
"before": "eyJ2ZXJzaW9uIjoxLCJpbnRlbnQiOnsic291cmNlIjoiZGVtbyJ9LCJwb3MiOnsicHJpbWFyeUtleSI6InBybV8wMXM4NTNqIn19",
"after": "eyJ2ZXJzaW9uIjoxLCJpbnRlbnQiOnsic291cmNlIjoiZGVtbyJ9LCJwb3MiOnsicHJpbWFyeUtleSI6InBybV8wMXM4NTNkIn19",
"limit": 20
}