Description: Get a certain task by its id. |
URL: /api/task/:taskId |
Method: GET |
Data constraints: None |
Example request:
{
"name": "Example Task",
"description": "Hey there, this is a simple example task!"
} 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",
"trackings": [
{
"id": "1",
"description": "This is the 1st test tracking.",
"startTime": "2020-11-15T10:00:00.000Z",
"endTime": null,
"createdAt": "2020-11-22T15:45:20.143Z",
"updatedAt": "2020-11-22T15:55:42.000Z"
},
{
"id": "2",
"description": "This is the 2nd test tracking.",
"startTime": "2020-11-15T12:00:00.000Z",
"endTime": null,
"createdAt": "2020-11-22T15:45:20.150Z",
"updatedAt": "2020-11-22T15:55:42.000Z"
},
{
"id": "3",
"description": "This is the 3rd test tracking.",
"startTime": "2020-11-15T12:00:00.000Z",
"endTime": "2020-11-15T15:00:00.000Z",
"createdAt": "2020-11-22T15:45:20.159Z",
"updatedAt": "2020-11-22T15:55:42.000Z"
}
],
"labels": [
{
"id": "1",
"name": "TestLabel1",
"createdAt": "2020-11-22T15:45:20.124Z",
"updatedAt": "2020-11-22T15:55:42.000Z"
},
{
"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"
}
]
}
} |