Short answer: Drop the "Zoho Books → New Invoice" 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.
{"invoice": {"date": "2026-04-23","total": 2500,"status": "draft","balance": 2500,"due_date": "2026-05-23","invoice_id": "460000000027061","customer_id": "460000000026049","created_time": "2026-04-23T10:30:00-0500","currency_code": "USD","customer_name": "Acme Corp","invoice_number": "INV-00042"}}
Every field below can be referenced by name in any action or filter that comes after this trigger.
| Field | Type | Example |
|---|---|---|
| invoice | object | { … } |
| invoice.date | string | "2026-04-23" |
| invoice.total | number | 2500 |
| invoice.status | string | "draft" |
| invoice.balance | number | 2500 |
| invoice.due_date | string | "2026-05-23" |
| invoice.invoice_id | string | "460000000027061" |
| invoice.customer_id | string | "460000000026049" |
| invoice.created_time | string | "2026-04-23T10:30:00-0500" |
One trigger. 5+ downstream actions. Zero glue.