get_task_list
Return the detail of a single task list. The authenticated user must be a
member of the list. Archived lists they belong to are returned here even
though list_task_lists hides them.
| Field | Type | Required | Description |
|---|---|---|---|
listId | number | yes | Numeric ID of the list to fetch. |
Example call
Section titled “Example call”Output
Section titled “Output”A single text content block containing a JSON object describing the list.
| Field | Type | Description |
|---|---|---|
id | number | Numeric ID of the list. |
name | string | Display name of the list. |
color | string | Color tag of the list. |
isArchived | boolean | true if archived. |
createdAt | string | ISO 8601 timestamp the list was created. |
updatedAt | string | ISO 8601 timestamp of the last update. |
Example output
Section titled “Example output”Errors
Section titled “Errors”The tool returns isError: true with an explanatory text block when the
list ID doesn’t exist or the authenticated user is not a member of the list.