Skip to content

unarchive_task_list

unarchive_task_list

Restore a previously-archived task list, making it visible again in list_task_lists and in the web sidebar. The authenticated user must be a member of the list.

Idempotent — unarchiving a non-archived list returns success.

Connected web clients receive a realtime tasklists refetch event so the list reappears in their sidebar.

FieldTypeRequiredDescription
listIdnumberyesNumeric ID of the list to unarchive.
{
  "listId": 27
}

A single text content block containing a JSON object describing the restored list.

FieldTypeDescription
idnumberNumeric ID of the list.
namestringDisplay name of the list.
colorstringColor tag of the list.
isArchivedbooleanAlways false.
{
  "id": 27,
  "name": "Q3 launch",
  "color": "Blue",
  "isArchived": false
}

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.