Skip to content

Latest commit

 

History

History
41 lines (33 loc) · 816 Bytes

File metadata and controls

41 lines (33 loc) · 816 Bytes

Remove label from task

Description: Remove a single label from a certain task.
URL: /api/task/:taskId/label/:labelId
Method: DELETE
Data constraints: None

Example request:

DELETE http://localhost:3000/api/task/1/label/1

Example result:

Status: 200 OK

{
  "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"
    }
  ]
}