Integrations
Trigglio integrates with popular automation platforms.
Pabbly Connect
Use Trigglio webhooks to trigger your Pabbly workflows.
Create a Webhook Trigger
In Pabbly Connect, create a new workflow and select “Webhook” as the trigger.
Copy the Webhook URL
Pabbly will generate a unique webhook URL. Copy this URL.
Subscribe via Trigglio API
Use the Trigglio API to subscribe to form submissions:
curl -X POST "https://trigglio.com/api/integrations/webhooks/triggers/subscribe" \
-H "Authorization: Bearer tr_live_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"hookUrl": "https://connect.pabbly.com/workflow/sendwebhookdata/...",
"formId": "frm_abc123"
}'Test the Connection
Submit a test form to verify Pabbly receives the data.
Map Fields
In Pabbly, map the incoming webhook fields to your workflow actions.
Zapier
Our Zapier integration is currently under review. Use webhooks with Zapier’s “Webhooks by Zapier” trigger in the meantime.
Using Webhooks with Zapier
- Create a new Zap with “Webhooks by Zapier” as the trigger
- Choose “Catch Hook” as the event
- Copy the webhook URL Zapier provides
- Use the Trigglio API to subscribe to that URL:
curl -X POST "https://trigglio.com/api/integrations/webhooks/triggers/subscribe" \
-H "Authorization: Bearer tr_live_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"hookUrl": "https://hooks.zapier.com/hooks/catch/...",
"formId": "frm_abc123"
}'Make (Integromat)
Use our webhook trigger with Make’s HTTP module.
Create a Webhook Module
In Make, add a new “Webhooks” module and select “Custom webhook”.
Copy the URL
Copy the webhook URL that Make generates.
Subscribe via API
Use the Trigglio API to subscribe to that URL:
curl -X POST "https://trigglio.com/api/integrations/webhooks/triggers/subscribe" \
-H "Authorization: Bearer tr_live_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"hookUrl": "https://hook.make.com/...",
"formId": "frm_abc123"
}'Map the Data
Submit a test form to see the data structure in Make, then map fields to your actions.
n8n
Self-hosted automation with n8n works great with Trigglio webhooks.
- Add a “Webhook” node in n8n
- Copy the production URL
- Subscribe via the Trigglio API
- Build your workflow
Custom Webhooks
Build your own integration with any platform that accepts webhooks.
Requirements
Your webhook endpoint must:
- Accept POST requests
- Accept JSON payloads (
Content-Type: application/json) - Return a 2xx status code to acknowledge receipt
- Respond within 30 seconds
Payload Format
See the Webhooks page for the full payload structure.
Example Use Cases
- Google Sheets - Send form responses to a spreadsheet using Google Apps Script
- Slack - Post notifications to a Slack channel when forms are submitted
- Email - Send custom email notifications based on form data
- CRM - Create leads or contacts in your CRM automatically
Need a Specific Integration?
If you need help with a specific platform, contact us and we’ll help you set it up.