Zapier
Atchr is not listed in the Zapier app directory yet. You can still connect Zapier in two ways: a Catch Hook (simplest), or the REST API with an Atchr key.
Plan: Zapier and webhooks require an active Professional or Enterprise subscription.
Option A — Catch Hook (recommended)
This uses the same signed webhooks described in the Webhooks guide.
- In Zapier, create a Zap and choose Webhooks by Zapier → Catch Hook.
- Copy the Catch Hook URL Zapier gives you.
- In Atchr, open the entity → Webhooks → paste that URL → pick events → Add webhook.
- Click Test in Atchr, then continue the Zap and map fields such as
event,entity.name, and items insidedata. - Add any action: Google Sheets, Gmail, HubSpot, Odoo, Microsoft 365, Slack, and so on.
Option B — Atchr API key
Generate a key from Apps & channels → Zapier.
The full key is shown once and starts with atz_.
Send it as a header on requests to https://api.atchr.com/zapier/…:
X-Atchr-Key: atz_…
X-Api-Key is also accepted. Test with:
GET https://api.atchr.com/zapier/auth/test
Subscribe to events (REST Hook)
POST https://api.atchr.com/zapier/hooks
{
"event": "lead.captured",
"hookUrl": "https://hooks.zapier.com/hooks/catch/…"
}
Unsubscribe with DELETE /zapier/hooks/{id}.
These subscriptions count toward the five webhooks per entity.
Actions (Zapier → Atchr)
| Endpoint | Body | Effect |
|---|---|---|
POST /zapier/actions/message |
chatroom (room uuid), message |
Posts a message into that conversation. If the room is a WhatsApp Cloud thread and the 24-hour window is open, it is also sent on WhatsApp. |
POST /zapier/actions/note |
chatroom, entry |
Adds an internal note (not visible to the visitor). |
POST /zapier/actions/shopify/order |
query |
Looks up a Shopify order. See Shopify order lookup. |
Rotate the key from the same dashboard button if it leaks. Old keys stop working immediately.