Skip to content

create_task_list

create_task_list

Create a new task list in the authenticated user’s team. The caller is automatically granted access to the new list.

FieldTypeRequiredDescription
namestringyesName of the new task list. Must contain at least one non-whitespace character.
colorstringnoColor tag for the list. Defaults to Green. See valid values below.

Valid color values: Gray, Red, Orange, Yellow, Amber, Lime, Green, Teal, Sky, Blue, Purple, Pink.

{
  "name": "Q3 launch",
  "color": "Blue"
}

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

FieldTypeDescription
idnumberNumeric ID of the new list.
namestringDisplay name of the list.
colorstringColor tag the list was created with.
isArchivedbooleanAlways false for a freshly created list.
{
  "id": 27,
  "name": "Q3 launch",
  "color": "Blue",
  "isArchived": false
}