Skip to main content

The Subtask List object

Subtask lists belong to a task and contain subtasks. Each subtask list has a name and holds an ordered set of subtasks that can be created, updated, and completed independently. All endpoints that return a subtask list support the expand parameter so you can include related resources (task, subtasks) in the response.

Attributes

id
string
Unique identifier for the subtask list.
name
string
The name of the subtask list.
task
string
expandable
ID of the task that owns this subtask list. Can be expanded to return the full task object.
subtasks
array
expandable
Array of subtask IDs in this list. Can be expanded to return full subtask objects. When expanded, each subtask supports further expansion: members, parent.
createdAt
string
Time at which the subtask list was created.
updatedAt
string
Time at which the subtask list was last updated.
The Subtask List object
{
"id": "tskl_9bbcb52099a37312fbff58c8",
"name": "Checklist name",
"task": "tsk_9bbcb52099a37312fbff58c8",
"subtasks": [
"tsk_9f82b648c61222c4086850c2",
"tsk_a1b2c3d4e5f6789012345678"
],
"createdAt": "2024-03-21T07:52:35+00:00",
"updatedAt": "2024-03-21T07:52:35+00:00"
}