Short answer: In TinyCommand, add the Zoho Books New Invoice trigger to a workflow and publish. It listens through a Zoho Books webhook and fires your workflow within seconds of the event, with no polling and no code. Add a filter if you only want some events to start a run.
Drop it on the canvas. Configure a couple of fields. Publish.
You don’t need to read this. TinyCommand 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" |