Creates a new team with the specified attributes, owners, and members
POST
curl -i -X POST \
https://api.rhythms.ai/rest/v2/teams \
-H 'Content-Type: application/json' \
-d '{
"team": {
"display_name": "string",
"icon": "string",
"color": "gray",
"description": null,
"parent_uuid": null,
"owner_uuids": [],
"member_uuids": []
}
}'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
}