Before you start: have a Zapier account and a Hiveku workflow you want to connect. Free Zapier tier works for low-volume flows.
Two Directions
Zapier → Hiveku
External event triggers a Hiveku workflow
Hiveku → Zapier
Hiveku event triggers a Zap (then fans out to other apps)
- Hiveku → Zapier
- Zapier → Hiveku
Use this when something happens in Hiveku (new lead, database change, scheduled task) and you want to push to a non-native tool via Zapier.
Create a Zap in Zapier
In Zapier, Create Zap. For the trigger, pick Webhooks by Zapier > Catch Hook.
Copy the webhook URL
Zapier generates a unique URL like
https://hooks.zapier.com/hooks/catch/12345/abcdef/. Copy it.Build your Hiveku workflow
In Hiveku, Workflows > New Workflow. Add a trigger appropriate for your use case — database change, form submission, schedule, webhook.
Add an HTTP Request action
Click + Add Action > HTTP Request:
- Method: POST
- URL: paste the Zapier webhook URL
- Headers:
Content-Type: application/json - Body:
Test the workflow
Run the workflow (manually or via real event). Zapier captures the sample payload and shows the fields.
Finish your Zap
In Zapier, add the action steps — send to Slack, append to Google Sheet, create HubSpot deal, whatever your destination is. Map fields from the webhook payload to the action inputs.
Zapier Filters and Formatters
Zapier ships a few utility steps that are worth knowing about:- Filter by Zapier — only process events matching criteria. Example: only forward Gmail emails from VIP senders to Hiveku. Avoids flooding workflows with noise.
- Formatter by Zapier — transform data before it reaches Hiveku. Format dates, split names into first/last, uppercase, trim whitespace.
When to Use Zapier vs Native Hiveku
Zapier is fastest when:- The source app is in Zapier’s directory but not in Hiveku’s native integrations
- The flow is low-volume (under 1,000 events/day)
- You don’t want to maintain the integration code
- High volume (Zapier bills per task — costs add up)
- Complex logic with branching, AI steps, or long-running operations
- You want full visibility into retries and failures
- Security/compliance requires fewer external services in the path
Security Notes
- Treat Hiveku webhook URLs like API keys. If they leak, regenerate by deleting the trigger and creating a new one.
- Zapier supports Basic Auth and custom headers on outgoing webhooks — use an
Authorizationheader to limit who can POST to your Hiveku endpoints. - For sensitive flows (finance, PII), consider native integrations instead — fewer third parties in the chain means fewer places for data to leak.
Verify It Worked
Trigger the Zap manually (or via real source event). Confirm:- The Zapier run log shows success for both trigger and webhook action
- The Hiveku workflow’s Runs tab shows a new run with the expected payload
- The downstream actions completed as intended
Troubleshooting
Zapier webhook isn't firing
Zapier webhook isn't firing
Two common causes: (1) the Zap is still toggled off — flip it on in the Zap list; (2) a filter step is excluding the event. Check the Zap’s history log — if the trigger fired but no downstream steps ran, a filter stopped it.
Data doesn't reach Hiveku
Data doesn't reach Hiveku
Check the Zapier task history for errors on the webhook action. Usually 4xx responses with Hiveku error messages explain the issue — malformed JSON, workflow disabled, wrong URL. Re-test with Zapier’s built-in test payload to isolate.
Hiveku workflow runs but fields are empty
Hiveku workflow runs but fields are empty
The Zapier-to-Hiveku data mapping has a typo or is pointing at the wrong trigger field. Open the Hiveku workflow run, inspect the trigger payload, and cross-reference against your Zapier action’s Data configuration.
Intermittent delivery — sometimes events land, sometimes not
Intermittent delivery — sometimes events land, sometimes not
Zapier retries on 5xx responses, so your Hiveku endpoint should be idempotent (handling duplicates gracefully). Check the Zap task history for retries. If Hiveku is returning 5xx occasionally, check the workflow’s error logs for transient failures like timeouts on a downstream API call.
Per-task billing is getting expensive
Per-task billing is getting expensive
Rebuild the most frequent Zaps as native Hiveku workflows. Typical savings: 80-95% at volumes over 5,000 events/month. The migration is usually a one-time afternoon of work.
What’s Next?
Workflows Basics
Understand triggers, actions, and runs in depth
Webhook Patterns
Generic patterns for connecting any service with webhooks