n8n, Zapier, Make
Integrate Sysevo with no-code automation platforms
n8n
Use an HTTP Request node to call the Public Agent API:
bash
Method: POST
URL: https://api.sysevo.io/api/v1/public/agent/{{ $json.agent_uuid }}
Headers:
X-API-Key: {{ $credentials.sysevoApiKey }}
Content-Type: application/json
Body:
{
"phone_number": "{{ $json.phone }}",
"initial_context": {
"customer_name": "{{ $json.name }}",
"company": "{{ $json.company }}"
}
}Common n8n patterns
- Calendly booking → immediate confirmation call
- HubSpot deal stage change → sales follow-up call
- Typeform submission → instant lead qualification call
- Cron schedule + Google Sheets → daily outbound list
Zapier
Use Webhooks by Zapier or a Code step:
bash
Method: POST
URL: https://api.sysevo.io/api/v1/public/agent/YOUR_TRIGGER_UUID
Headers: X-API-Key: YOUR_API_KEY
Body (JSON):
{
"phone_number": "{{phone}}",
"initial_context": { "name": "{{name}}" }
}Make (Integromat)
- HTTP → Make a Request module
- Method: POST
- URL:
https://api.sysevo.io/api/v1/public/agent/YOUR_TRIGGER_UUID - Headers:
X-API-Key,Content-Type: application/json - Body type: Raw JSON
- Request content:
json
{
"phone_number": "{{phone}}",
"initial_context": { "customer_name": "{{name}}" }
}Was this page helpful?
Open Dashboard →