Version 0.1
Get a single task
GET /projects/:project-id/tasks/:task-id
View a single task given by the :project-id
and :task-id
Response
A task object.
Example
Request
GET /projects/15/tasks/164?v=0.1
Host: api.deftask.com
Response
200 OK
Content-Type: application/json
{
"labelIds": [],
"assigneeIds": [],
"projectId": 15,
"taskId": 164,
"state": "open",
"title": "issue with a milestone",
"description": "and labels and body",
"descriptionHtml": "<p>and labels and body</p>\n",
"creator": 5,
"createdAt": "2017-12-11T12:29:10.000000+05:30",
"updater": 1,
"updatedAt": "2018-09-28T00:56:28.940718+05:30"
}