cURL
curl --request GET \ --url https://api.domo.com/v1/projects/{PROJECT_ID}/lists/{LIST_ID}/tasks/{TASK_ID} \ --header 'Authorization: Bearer <token>'
{ "id": "3", "projectId": "2", "projectListId": "4", "taskName": "Project Scaffolding", "createdDate": "2018-08-01T07:00:00Z", "updatedDate": "2018-08-01T07:00:00Z", "priority": 3, "createdBy": 27, "ownedBy": 27, "contributors": [ 27 ], "attachmentCount": 0, "tags": [], "archived": false }
Retrieves an individual task from a given project id and list id.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The ID of the project
The ID of the list
The ID of the task
Returns a task object.