{ "opencollection": "1.0.0", "info": { "name": "Todoist Comments Reminders API", "version": "1.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Reminders", "type": "folder" }, "items": [ { "info": { "name": "List Reminders", "type": "http" }, "http": { "method": "GET", "url": "https://api.todoist.com/api/v1/reminders" }, "docs": "Returns all reminders for the authenticated user." }, { "info": { "name": "Create Reminder", "type": "http" }, "http": { "method": "POST", "url": "https://api.todoist.com/api/v1/reminders", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new reminder for a task." }, { "info": { "name": "Get Reminder", "type": "http" }, "http": { "method": "GET", "url": "https://api.todoist.com/api/v1/reminders/:id", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Returns a single reminder by ID." }, { "info": { "name": "Delete Reminder", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.todoist.com/api/v1/reminders/:id", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Deletes a reminder permanently." } ] } ], "bundled": true }