Updates an existing label or label group with the specified attributes. Admins only. Non-group labels can be moved between groups or back to the root by updating parent_uuid.
PUT
curl -i -X PUT \
'https://api.rhythms.ai/rest/v2/labels/{id}' \
-H 'Content-Type: application/json' \
-d '{
"label": {
"name": "string",
"description": "string",
"parent_uuid": "string",
"color": "string"
}
}'Success
Response
{
"uuid": "string",
"name": "string",
"is_group": false,
"parent_uuid": null,
"labelings_count": 0,
"description": null,
"creator_uuid": null,
"color": null
}