@robinpath/todoist
v0.1.1
Published
Todoist module for RobinPath.
Readme
@robinpath/todoist
Todoist module for RobinPath.
Why use this module?
The todoist module lets you:
- listProjects
- getProject
- createProject
- updateProject
- deleteProject
All functions are callable directly from RobinPath scripts with a simple, consistent API.
Installation
npm install @robinpath/todoistQuick Start
1. Set up credentials
todoist.setCredentials "your-credentials"2. listProjects
todoist.listProjectsAvailable Functions
| Function | Description |
|----------|-------------|
| todoist.setCredentials | Configure todoist credentials. |
| todoist.listProjects | listProjects |
| todoist.getProject | getProject |
| todoist.createProject | createProject |
| todoist.updateProject | updateProject |
| todoist.deleteProject | deleteProject |
| todoist.listTasks | listTasks |
| todoist.getTask | getTask |
| todoist.createTask | createTask |
| todoist.updateTask | updateTask |
| todoist.closeTask | closeTask |
| todoist.reopenTask | reopenTask |
| todoist.deleteTask | deleteTask |
| todoist.listLabels | listLabels |
| todoist.createLabel | createLabel |
| todoist.listComments | listComments |
| todoist.createComment | createComment |
| todoist.deleteComment | deleteComment |
Examples
listProjects
todoist.listProjectsgetProject
todoist.getProjectcreateProject
todoist.createProjectIntegration with RobinPath
import { RobinPath } from "@wiredwp/robinpath";
import Module from "@robinpath/todoist";
const rp = new RobinPath();
rp.registerModule(Module.name, Module.functions);
rp.registerModuleMeta(Module.name, Module.functionMetadata);
const result = await rp.executeScript(`
todoist.setCredentials "your-credentials"
todoist.listProjects
`);Full API Reference
See MODULE.md for complete documentation including all parameters, return types, error handling, and advanced examples.
Related Modules
@robinpath/asana— Asana module for complementary functionality@robinpath/clickup— ClickUp module for complementary functionality@robinpath/jira— Jira module for complementary functionality@robinpath/linear— Linear module for complementary functionality@robinpath/monday— Monday.com module for complementary functionality
License
MIT
