Live · via webhooks
PolicifyAI on Zapier & Make
Policy & consent events → 6,000+ apps.
Connect PolicifyAI to Zapier, Make, or n8n today using signed webhooks as the trigger. Every event is HMAC-SHA256 signed so your automation can verify authenticity. A native Zapier app (no-code trigger) is on the roadmap.
Set up in 5 minutes
5 minutes- 1In Zapier: create a Zap with "Webhooks by Zapier → Catch Hook" (or Make: "Custom webhook"; n8n: "Webhook" node). Copy the URL.
- 2In PolicifyAI: Dashboard → Integrations → find the Zapier (or Make) card → Connect, and paste the URL.
- 3Fine-tune which events fire in Dashboard → Integrations → Webhooks.
- 4Optionally verify the X-PolicifyAI-Signature header in a code/filter step, then map fields to any downstream app.
Verify the signature in a Zapier "Code by Zapier" (Node) step
const crypto = require('crypto')
const secret = inputData.secret // your endpoint signing secret
const signature = inputData.signatureHeader // X-PolicifyAI-Signature
const body = inputData.rawBody // raw request body string
const expected = crypto.createHmac('sha256', secret).update(body).digest('hex')
const ok = crypto.timingSafeEqual(Buffer.from(signature), Buffer.from(expected))
if (!ok) throw new Error('Invalid PolicifyAI signature')
output = { verified: true }Why PolicifyAI
- Signed webhooks mean you can trust the payload - many CMPs ship unsigned webhooks you cannot verify.
- Works with Make and n8n too, not just Zapier.
Frequently asked
Do I need the native app?+
No. The webhook path is production-grade today. The native app will just remove the code step.
Also available
Universal HTMLOne script tag shows your policy on any website.WordPressConnect once - policies publish to your site automatically.ShopifyOne-click publish your policies to your store - coming soon.WixPaste one embed on your policy page - done.WebflowDrop an Embed element, paste, publish.Google Tag ManagerConsent Mode v2 tag - arrives with the cookie banner.