{ "opencollection": "1.0.0", "info": { "name": "Todoist Comments Tasks API", "version": "1.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Tasks", "type": "folder" }, "items": [ { "info": { "name": "List Tasks", "type": "http" }, "http": { "method": "GET", "url": "https://api.todoist.com/api/v1/tasks", "params": [ { "name": "project_id", "value": "", "type": "query", "description": "Filter by project ID" }, { "name": "section_id", "value": "", "type": "query", "description": "Filter by section ID" }, { "name": "label", "value": "", "type": "query", "description": "Filter by label name" }, { "name": "filter", "value": "", "type": "query", "description": "Filter expression" }, { "name": "lang", "value": "", "type": "query", "description": "Language for filter expression" }, { "name": "ids", "value": "", "type": "query", "description": "Comma-separated task IDs" }, { "name": "limit", "value": "", "type": "query", "description": "Number of tasks to return" }, { "name": "cursor", "value": "", "type": "query", "description": "Pagination cursor" } ] }, "docs": "Returns a list of tasks filtered by project, section, label, or other criteria." }, { "info": { "name": "Create Task", "type": "http" }, "http": { "method": "POST", "url": "https://api.todoist.com/api/v1/tasks", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new task in Todoist." }, { "info": { "name": "Get Task", "type": "http" }, "http": { "method": "GET", "url": "https://api.todoist.com/api/v1/tasks/:id", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Returns a single task by its ID." }, { "info": { "name": "Update Task", "type": "http" }, "http": { "method": "POST", "url": "https://api.todoist.com/api/v1/tasks/:id", "params": [ { "name": "id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates a task with new properties." }, { "info": { "name": "Delete Task", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.todoist.com/api/v1/tasks/:id", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Deletes a task permanently." }, { "info": { "name": "Close Task", "type": "http" }, "http": { "method": "POST", "url": "https://api.todoist.com/api/v1/tasks/:id/close", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Marks a task as completed." }, { "info": { "name": "Reopen Task", "type": "http" }, "http": { "method": "POST", "url": "https://api.todoist.com/api/v1/tasks/:id/reopen", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Marks a previously completed task as uncompleted." }, { "info": { "name": "Move Task", "type": "http" }, "http": { "method": "POST", "url": "https://api.todoist.com/api/v1/tasks/:id/move", "params": [ { "name": "id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Moves a task to a different project or section." }, { "info": { "name": "Quick Add Task", "type": "http" }, "http": { "method": "POST", "url": "https://api.todoist.com/api/v1/tasks/quick_add", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a task using natural language processing." } ] } ], "bundled": true }