curl --request PUT \
--url https://cloud.kaneo.app/api/label/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"color": "<string>"
}
'{
"id": "<string>",
"name": "<string>",
"color": "<string>",
"createdAt": "<unknown>",
"taskId": "<string>",
"workspaceId": "<string>"
}Update an existing label
curl --request PUT \
--url https://cloud.kaneo.app/api/label/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"color": "<string>"
}
'{
"id": "<string>",
"name": "<string>",
"color": "<string>",
"createdAt": "<unknown>",
"taskId": "<string>",
"workspaceId": "<string>"
}API Key authentication