Sections

Section JSON Objects

The official API documentation shows us the outline of a complete section:

{
    "id": 7025,
    "project_id": 2203306141,
    "order": 1,
    "name": "Groceries"
}

Working Locally

Create sections locally

import { Section } from "todoist-rest-client";
let mySection = Section({ name: "section name" });

Last updated