Teams
Update a team
Update the team information. Only allowed if the current user is a member of the team and has the $update_team permission.
patch/teams/{team_id}
Path parameters
team_idstring required
Request body
Example request
{
"display_name": "My Team",
"profile_image_url": "https://example.com/image.jpg",
"client_metadata": {
"key": "value"
}
}Response
Successful response
Example response
{
"id": "ad962777-8244-496a-b6a2-e0c6a449c79e",
"display_name": "My Team",
"profile_image_url": "https://example.com/image.jpg",
"client_metadata": {
"key": "value"
},
"client_read_only_metadata": {
"key": "value"
}
}