Teams
Update a team
Update a team's name and/or its description.
If you are using a personal access token, you must have "can manage" permission on the team or be a workspace manager.
The "All-incidents" team (is_global=true) cannot be updated.
patch/v1/teams/{team_id}
Path parameters
team_idinteger required
The id of the team
Request body
Example request
{
"id": 3252,
"name": "feature team A",
"description": "Description of my team",
"gitguardian_url": "https://dashboard.gitguardian.com/workspace/1/settings/user/teams/1",
"external_provider_id": "123-456-7890"
}Response
The team was updated successfully.
Example response
{
"id": 3252,
"name": "feature team A",
"description": "Description of my team",
"gitguardian_url": "https://dashboard.gitguardian.com/workspace/1/settings/user/teams/1",
"external_provider_id": "123-456-7890"
}