Short answer: Drop the "Todoist → New Task" trigger on your workflow canvas, add filters if you want them, and publish. It fires within seconds of the event in Todoist, not on a polling schedule.
Drop it on the canvas. Configure a couple of fields. Publish.
You don’t need to read this. Tiny Command auto-maps every field into the visual picker so downstream nodes can pull values by clicking. We show it here for power users who want to know what’s on the wire.
{"id": "7891011121","due": {"date": "2026-04-25","string": "Apr 25","is_recurring": false},"url": "https://todoist.com/showTask?id=7891011121","labels": ["work","urgent"],"content": "Review quarterly report","priority": 3,"parent_id": null,"created_at": "2026-04-23T09:15:00.000000Z","creator_id": "123456","project_id": "2203456789","section_id": "7025","description": "Check all figures before the board meeting","is_completed": false}
Every field below can be referenced by name in any action or filter that comes after this trigger.
| Field | Type | Example |
|---|---|---|
| id | string | "7891011121" |
| due | object | { … } |
| due.date | string | "2026-04-25" |
| due.string | string | "Apr 25" |
| due.is_recurring | boolean | false |
| url | string | "https://todoist.com/showTask?id=7891011121" |
| labels | array | ["work","urgent"] |
| content | string | "Review quarterly report" |
| priority | number | 3 |
| parent_id | null | null |
| created_at | string | "2026-04-23T09:15:00.000000Z" |
| creator_id | string | "123456" |
| project_id | string | "2203456789" |
| section_id | string | "7025" |
| description | string | "Check all figures before the board meeting" |
| is_completed | boolean | false |
One trigger. 27+ downstream actions. Zero glue.