Skip to content
TriggerZoho BooksReal-timeUpdated May 2026

How do I trigger when a new Zoho Books expense is recorded?

Short answer: Drop the "Zoho BooksNew 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.

Anatomy

What this trigger looks like in a workflow.

Drop it on the canvas. Configure a couple of fields. Publish.

In the builder
Trigger
New Expense
When the matching event happens
new expenseexpense createdon expense createdwhen expense createdwatch for expenseexpense recordedexpense addedwhen a new expense is recorded in zoho books
What this trigger returns
for the curious

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"
}
}
Output shape

Fields available to downstream nodes.

Every field below can be referenced by name in any action or filter that comes after this trigger.

FieldTypeExample
expenseobject{ … }
expense.datestring"2026-04-23"
expense.amountnumber350
expense.vendor_idstring"460000000030001"
expense.account_idstring"460000000000400"
expense.expense_idstring"460000000035001"
expense.descriptionstring"Office supplies for Q2"
expense.is_billablebooleanfalse
expense.vendor_namestring"Office Depot"
FAQ

Questions about New Expense.

How does the New Expense trigger work in Zoho Books?
Fires when a new expense is recorded in Zoho Books. Use it for approval flows, reimbursement routing, or budget alerting.
Is the New Expense trigger real-time?
Yes. New Expense uses webhooks or push subscriptions, not polling. Your workflow fires within seconds of the event happening in Zoho Books.
What data does New Expense return?
The full event payload from Zoho Books. The output shape table on this page lists every field, its type, and an example value so you can map fields into downstream nodes.
Can I filter New Expense so only some events start a workflow?
Yes. Add a Filter node right after the trigger and match on any field, whether that's subject, sender, status, or anything else in the payload. Workflows only continue when the filter passes.
Do I need Zoho Books admin permissions to use New Expense?
For most Zoho Books accounts a standard user can authorize the trigger. Some Zoho Books plans require an admin to enable third-party webhooks. Check Zoho Books's docs if the trigger fails to register.
More triggers

Other Zoho Books triggers.

Build a workflow on this trigger.

One trigger. 5+ downstream actions. Zero glue.