Skip to main content
GET
/
v1
/
projects
/
{PROJECT_ID}
/
lists
Retrieve all project lists
curl --request GET \
  --url https://api.domo.com/v1/projects/{PROJECT_ID}/lists \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "4",
    "name": "To Do",
    "type": "TODO",
    "index": 1
  },
  {
    "id": "5",
    "name": "Working On",
    "type": "WORKING_ON",
    "index": 2
  },
  {
    "id": "6",
    "name": "Completed",
    "type": "COMPLETED",
    "index": 3
  }
]

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

Response

200 - application/json

Returns an array of list objects.

id
string
name
string
type
string
index
integer