v11

latestOpenAPI 3.1.12026-08-03174162.0 MB
Team 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

beforestring nullable

Cursor for navigating backward in the result set. Omitted when there are no prior results.

afterstring nullable

Cursor for navigating forward in the result set. Omitted when there are no subsequent results.

limitnumber required

Maximum number of items to return in each result set

Example response

{
  "members": [
    {
      "permissions": [
        "event.read",
        "event.write",
        "order.read"
      ]
    }
  ],
  "before": "eyJ2ZXJzaW9uIjoxLCJpbnRlbnQiOnsic291cmNlIjoiZGVtbyJ9LCJwb3MiOnsicHJpbWFyeUtleSI6InBybV8wMXM4NTNqIn19",
  "after": "eyJ2ZXJzaW9uIjoxLCJpbnRlbnQiOnsic291cmNlIjoiZGVtbyJ9LCJwb3MiOnsicHJpbWFyeUtleSI6InBybV8wMXM4NTNkIn19",
  "limit": 20
}