Team Invitations
Update a team invitation
Update permissions of a team invitation.
If you are using a personal access token, you must have "can manage" permission on the team or be a workspace manager.
patch/v1/teams/{team_id}/team_invitations/{team_invitation_id}
Path parameters
team_idinteger required
The id of the team
team_invitation_idinteger required
The id of the team invitation
Request body
Example request
{
"team_permission": "cannot_manage",
"incident_permission": "can_view"
}Response
Team invitation was updated successfully.
Example response
{
"id": 3252,
"invitation_id": 4851,
"team_id": 991,
"team_permission": "cannot_manage",
"incident_permission": "can_edit"
}