Skip to main content
GET
/
v1
/
projects
/
{PROJECT_ID}
/
lists
/
{LIST_ID}
/
tasks
/
{TASK_ID}
Retrieve individual task
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
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

PROJECT_ID
string
required

The ID of the project

LIST_ID
string
required

The ID of the list

TASK_ID
string
required

The ID of the task

Response

200 - application/json

Returns a task object.

id
string
projectId
string
projectListId
string
taskName
string
createdDate
string
updatedDate
string
priority
integer
createdBy
integer
ownedBy
integer
contributors
integer[]
attachmentCount
integer
tags
object[]
archived
boolean