v11

latestOpenAPI 3.1.12026-08-03174162.0 MB
Team Invites

List pending team invitations with cursor-based pagination

Returns pending team invitations for a specific team. Team key can be ID or slug. These are email-based invitations that have not yet been accepted.

get/teams/{key}/invites

Path parameters

keystring required

Team identifier (ID or slug)

Query parameters

querystring

Search query to filter invitations by email. Case-insensitive partial match

limitinteger

Maximum number of invitations to return per page

cursorstring

Pagination cursor for fetching the next page

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

{
  "invites": [
    {
      "permissions": []
    }
  ],
  "before": "eyJ2ZXJzaW9uIjoxLCJpbnRlbnQiOnsic291cmNlIjoiZGVtbyJ9LCJwb3MiOnsicHJpbWFyeUtleSI6InBybV8wMXM4NTNqIn19",
  "after": "eyJ2ZXJzaW9uIjoxLCJpbnRlbnQiOnsic291cmNlIjoiZGVtbyJ9LCJwb3MiOnsicHJpbWFyeUtleSI6InBybV8wMXM4NTNkIn19",
  "limit": 20
}