Updates an existing team with the specified attributes, owners, and members
PUT
curl -i -X PUT \
'https://api.rhythms.ai/rest/v2/teams/{id}' \
-H 'Content-Type: application/json' \
-d '{
"team": {
"display_name": "string",
"icon": "string",
"color": "gray",
"description": "string",
"parent_uuid": "string",
"status": "active",
"owner_uuids": [
"string"
],
"member_uuids": [
"string"
]
}
}'Success
Response
{
"uuid": "string",
"parent_uuid": null,
"display_name": "string",
"is_org": false,
"description": null,
"path": null,
"status": "active",
"depth": 0,
"viva_goals_team_id": null,
"icon": null,
"color": null
}