Make (Integromat) Integration
What it does
Section titled “What it does”HARi works with Make (formerly Integromat) through webhooks and HTTP modules. Build automation scenarios that connect your CRM to hundreds of apps.
How it works
Section titled “How it works”Triggers (HARi to Make)
Section titled “Triggers (HARi to Make)”Use HARi workflow webhooks to start Make scenarios:
- In Make, create a new scenario with a Webhooks > Custom webhook trigger
- Copy the webhook URL
- In HARi, create a workflow with the Call Webhook action and paste the Make URL
- When the workflow fires, Make receives the event data and runs your scenario
Actions (Make to HARi)
Section titled “Actions (Make to HARi)”Use Make’s HTTP module to send data to HARi:
- Add an HTTP > Make a request module to your scenario
- Set the URL to your HARi API endpoint (e.g.,
https://yourworkspace.haricrm.com/api/records/contact) - Set method to POST (create) or PUT (update)
- Add your API token in the Authorization header
- Set the request body with the fields to create or update
Setup guide
Section titled “Setup guide”Sending data from HARi to Make
Section titled “Sending data from HARi to Make”- In Make, create a scenario and add a Webhooks > Custom webhook module
- Click Add to create a new webhook and copy the URL
- In HARi, go to Settings > Workflows > + New Workflow
- Configure the trigger (e.g., “When a contact is created”)
- Add action: Call Webhook with the Make webhook URL
- Test by creating a contact in HARi — the data should appear in Make
Sending data from Make to HARi
Section titled “Sending data from Make to HARi”- Add an HTTP > Make a request module to your scenario
- URL:
https://yourworkspace.haricrm.com/api/records/{entity} - Method:
POST - Headers:
Authorization: Bearer YOUR_API_TOKEN,Content-Type: application/json - Body: JSON with the fields for the new record
Common scenarios
Section titled “Common scenarios”| Trigger | Action |
|---|---|
| New HARi deal | Send notification to Slack/Teams |
| New Typeform submission | Create lead in HARi |
| New HARi invoice | Generate PDF and email via SendGrid |
| Shopify order received | Create or update company in HARi |
| HARi task overdue | Send reminder via email |
Payload format
Section titled “Payload format”HARi sends webhook payloads as JSON. See the Webhooks page for the full payload specification.
Differences from Zapier
Section titled “Differences from Zapier”Both Zapier and Make work with HARi through the same webhook and API mechanism. Choose based on your preference:
- Zapier: simpler setup, better for straightforward automations
- Make: more powerful for complex scenarios with branching, loops, and data transformation