Events reference
Every webhook delivery is an HTTP POST with a JSON body. This page documents
the events you can subscribe to and the shape of what Ziptax sends.
Event catalog
rate.updated is the only event available today. More event types are coming
soon.
Payload schema
All events share the same top-level shape: event, timestamp, and data.
Example: rate.updated
Field reference
locality and code identify which authority changed. To get the new rate
values, call the Ziptax rate API for that authority.
The webhook body is a trigger, not the rate data itself.
Tax authority values
locality is always one of two values, and code is the two-letter code of the
state, province, or territory within that locality:
The complete set of locality and code combinations Ziptax can send is listed
below. Expand the table to browse it, or use the button to copy the full table
as CSV without expanding.
Show all tax authority values (69)
The timestamp in the example uses a space separator and a Z suffix
(YYYY-MM-DD HH:mm:ss.SSSZ) and should be treated as UTC. If you need to parse
it programmatically, normalize it yourself (for example, replace the space with
T) rather than assuming a strict ISO-8601 string.
Delivery mechanics
- Deliveries are HTTP
POSTrequests. - The header
Content-Type: application/jsonis set, with the JSON body shown above. - Your endpoint should respond quickly with a
2xxstatus to acknowledge receipt.
For details on delivery status, retries, and timeouts, see Test & monitor. Some production delivery behavior (retry policy, production timeouts, source IP ranges) is not yet documented. Contact support if you need those specifics for your integration.