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