Creates a new label with the provided attributes. Labels can be regular labels or groups.
POST
curl -i -X POST \
https://api.rhythms.ai/rest/v2/labels \
-H 'Content-Type: application/json' \
-d '{
"label": {
"name": "string",
"description": null,
"parent_uuid": "string",
"is_group": false,
"color": null
}
}'Success
Response
{
"uuid": "string",
"name": "string",
"is_group": false,
"parent_uuid": null,
"labelings_count": 0,
"description": null,
"creator_uuid": null,
"color": null
}