Fetches all task lists

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…
Path Params
number
required

Team ID

Query Params
project_ids[]
array of numbers

Filter task lists with given Project IDs (work only if task_list_ids is not used)

project_ids[]
task_list_ids[]
array of numbers

Filter task lists with given Task List IDs (bypass the project_ids filter)

task_list_ids[]
Responses
200

Success

Example Response

id is the Task List ID in this case


{
  task_lists: [
    {
      complete_task_count: 0,
      id: 111,
      incomplete_task_count: 3,
      is_default: false,
      name: "List 1",
      project_id: 12345,
      project_tasks_count: 3,
      task_order: [
        123456,
        123457,
        123458,
      ],
    }
  ]
}
401

Invalid Authentication Key and/or Team ID

Language
Credentials
LoadingLoading…
Response
Click Try It! to start a request and see the response here!