Team Invitations
List team invitations
List all existing team invitations.
If you are using a personal access token, you must have "can manage" permission on the team or be a workspace manager.
get/v1/teams/{team_id}/team_invitations
Path parameters
team_idinteger required
The id of the team
Query parameters
cursorstring
Pagination cursor.
per_pageinteger
Number of items to list per page.
invitation_idinteger
The id of an invitation to filter on
is_team_leaderboolean
Filter team invitations that will become team leaders
Example:true
team_permission'can_manage' | 'cannot_manage'
Filter team invitations with a specific team permission
team_permission is replaced by is_team_leader
Example:can_manage
incident_permission'can_view' | 'can_edit' | 'full_access'
Filter team invitations with a specific incident permission
Example:can_edit
Response
Team invitation list
Example response
[
{
"id": 3252,
"invitation_id": 4851,
"team_id": 991,
"team_permission": "cannot_manage",
"incident_permission": "can_edit"
}
]