PUT
/api/v1.0/tasks/{task_id}/labels
curl \
--request PUT 'https://openapi.niftypm.com/api/v1.0/tasks/{task_id}/labels' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"labels":["string"]}'
Request examples
{
"labels": [
"string"
]
}
Response examples (200)
{
"message": "string",
"labels": [
"string"
]
}