Description: Remove a list of labels from a certain task. |
URL: /api/task/:taskId/label/ |
Method: DELETE |
Data constraints: Provide labels by their ids. |
Example request:
{
"labels": ["1", "3"]
} |
Example result:
{
"data": [
{
"id": "2",
"name": "TestLabel2",
"createdAt": "2020-11-22T15:45:20.132Z",
"updatedAt": "2020-11-22T15:45:20.132Z"
}
]
} |