Make (Integromat) Integration
Connect Dunmore to Make for visual workflow automation.
Connect Dunmore to Make (formerly Integromat) to build visual automation workflows triggered by payment events.
Setup
- In Make, create a new scenario with a Webhooks > Custom webhook module
- Copy the webhook URL provided by Make
- Add a Make connector in the Dunmore console
- Paste the webhook URL and select event types
- Run the scenario once to determine the data structure
Event Payload
All Dunmore events are forwarded as JSON with these top-level fields:
{
"event_type": "payment.settled",
"event_id": "evt_xxx",
"timestamp": "2026-02-19T...",
"data": { ... },
"metadata": { "project_id": "proj_xxx" }
}
Use Make's Router module to handle different event types.
Configuration
{
"type": "make",
"config": {
"webhookUrl": "https://hook.make.com/..."
},
"eventTypes": ["payment.settled", "payment.failed"]
}
API Example
curl -X POST https://api.dunmore.xyz/api/projects/{projectId}/connectors \
-H "Authorization: Bearer {token}" \
-H "Content-Type: application/json" \
-d '{
"type": "make",
"config": {
"webhookUrl": "YOUR_MAKE_WEBHOOK_URL"
},
"eventTypes": ["payment.settled", "payment.failed"]
}'