GET/tasklists/{id}.json

Retrieve Single Task List

Retrieves the task list corresponding to the submitted integer ID.

  • The date field returned in the response is in UTC date/time
  • The toDate, toTime, fromDate and fromTime are specified in your timezone.

Path Params

  • Name
    id
    Type
    string
    required
    Description

Responses

  • Code
    200
    Type
    object
    Schema
    Description
    200 Response

Examples

200 Response

application/json
{
  "STATUS": "OK",
  "todo-list": {
    "id": "1",
    "name": "Design Requirements",
    "description": "Please track all tasks for designs here.",
    "position": 11,
    "projectId": "1",
    "projectName": "Website Redesign",
    "lastUpdated": "2020-04-28T16:27:29Z",
    "private": false,
    "isTemplate": false,
    "tags": [],
    "tasks": null,
    "milestone-id": "",
    "pinned": true,
    "complete": false,
    "uncompleted-count": 0,
    "status": "new"
  }
}