Short answer: Drop the "Zoho Books → New Expense" trigger on your workflow canvas, add filters if you want them, and publish. It fires within seconds of the event in Zoho Books, 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.
{"expense": {"date": "2026-04-23","amount": 350,"vendor_id": "460000000030001","account_id": "460000000000400","expense_id": "460000000035001","description": "Office supplies for Q2","is_billable": false,"vendor_name": "Office Depot","account_name": "Travel Expenses","created_time": "2026-04-23T09:45:00-0500","currency_code": "USD"}}
Every field below can be referenced by name in any action or filter that comes after this trigger.
| Field | Type | Example |
|---|---|---|
| expense | object | { … } |
| expense.date | string | "2026-04-23" |
| expense.amount | number | 350 |
| expense.vendor_id | string | "460000000030001" |
| expense.account_id | string | "460000000000400" |
| expense.expense_id | string | "460000000035001" |
| expense.description | string | "Office supplies for Q2" |
| expense.is_billable | boolean | false |
| expense.vendor_name | string | "Office Depot" |
One trigger. 5+ downstream actions. Zero glue.