Make (Integromat) Integration
Use Make to connect CleverROI with hundreds of apps and automate lead scoring.
Step‑by‑Step
1
Get your API key and endpoint
From your CleverROI dashboard, copy your API key and note the webhook URL: https://yourdomain.com/api/webhook.php.
2
Create a new scenario in Make
Log in to Make, click Create a new scenario, and add a trigger module (e.g., Google Sheets, Webhook, etc.).
3
Add an HTTP module
Add an HTTP → Make a request module. Configure it:
- URL: Your webhook URL
- Method: POST
- Headers: Add
X-API-KEYwith your API key - Body type: JSON
- Content type: JSON
- Request content: Map trigger fields to JSON. Include custom fields if available:
{
"name": "{{trigger.name}}",
"email": "{{trigger.email}}",
"phone": "{{trigger.phone}}",
"budget": "{{trigger.budget}}",
"message": "{{trigger.message}}",
"source": "make",
"custom_fields": {
"Your role": "{{trigger.role}}",
"When do you want to start?": "{{trigger.start_time}}",
"Are you decision maker?": "{{trigger.decision_maker}}",
"Company size": "{{trigger.company_size}}",
"Primary goal": "{{trigger.primary_goal}}"
}
}
4
Run the scenario
Test with sample data. If successful, the lead will appear in your dashboard. You can then schedule the scenario to run automatically.