Team Memberships
Update a team membership
Update permissions of a team membership.
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_memberships/{team_membership_id}
Path parameters
team_idinteger required
The id of the team
team_membership_idinteger required
The id of the team membership
Request body
Example request
{
"team_permission": "cannot_manage",
"incident_permission": "can_view"
}Response
Team membership was updated successfully.
Example response
{
"id": 1234,
"member_id": 2489,
"team_id": 4285,
"team_permission": "cannot_manage",
"incident_permission": "can_edit"
}