Requires the lists:write scope. Viewers cannot create lists.
Lists created via the API must belong to a folder. The folder_id field is required.
Request body
Numeric ID of the workspace to create the list in.
Numeric ID of the folder this list belongs to. The folder must exist in the same workspace. Unlike the Arca app, this field is required when creating a list via the API.
List name. Whitespace is trimmed. HTML is sanitized.
Optional icon identifier slug (e.g., "folder-1", "chart", "code").
Optional color label. Defaults to "gray" if not provided.
Response
Returns the created list. The position is automatically assigned as one greater than the current maximum position in the workspace.
Workspace this list belongs to.
Icon. null if not provided.
Color. Defaults to "gray".
Auto-assigned sort position.
UTC ISO-8601 creation timestamp.
{
"id": 25,
"workspace_id": 3,
"folder_id": 10,
"name": "API Tasks",
"icon": "folder-1",
"color": "blue",
"position": 3,
"created_at": "2026-03-18T11:00:00.000Z"
}