Description: Get a list of all tasks with the label. |
URL: /api/label/:labelId/task/ |
Method: GET |
Data constraints: None |
Example request:
|
Example result:
{
"data": [
{
"id": "1",
"name": "TestTask1",
"description": "This is the 1st test task.",
"createdAt": "2020-11-22T15:45:20.197Z",
"updatedAt": "2020-11-22T15:45:20.197Z"
},
{
"id": "2",
"name": "TestTask2",
"description": "This is the 2nd test task.",
"createdAt": "2020-11-22T15:45:20.168Z",
"updatedAt": "2020-11-22T15:45:20.168Z"
}
]
} |