{ "opencollection": "1.0.0", "info": { "name": "Todoist Comments Projects API", "version": "1.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Projects", "type": "folder" }, "items": [ { "info": { "name": "List Projects", "type": "http" }, "http": { "method": "GET", "url": "https://api.todoist.com/api/v1/projects" }, "docs": "Returns all active projects for the authenticated user." }, { "info": { "name": "Create Project", "type": "http" }, "http": { "method": "POST", "url": "https://api.todoist.com/api/v1/projects", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new project." }, { "info": { "name": "Get Project", "type": "http" }, "http": { "method": "GET", "url": "https://api.todoist.com/api/v1/projects/:id", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Returns a single project by ID." }, { "info": { "name": "Update Project", "type": "http" }, "http": { "method": "POST", "url": "https://api.todoist.com/api/v1/projects/:id", "params": [ { "name": "id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates a project's properties." }, { "info": { "name": "Delete Project", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.todoist.com/api/v1/projects/:id", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Deletes a project and all its tasks." }, { "info": { "name": "Archive Project", "type": "http" }, "http": { "method": "POST", "url": "https://api.todoist.com/api/v1/projects/:id/archive", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Archives a project." }, { "info": { "name": "List Project Collaborators", "type": "http" }, "http": { "method": "GET", "url": "https://api.todoist.com/api/v1/projects/:id/collaborators", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Returns all collaborators on a shared project." } ] } ], "bundled": true }