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)

  1. HTTP → Make a Request module
  2. Method: POST
  3. URL: https://api.sysevo.io/api/v1/public/agent/YOUR_TRIGGER_UUID
  4. Headers: X-API-Key, Content-Type: application/json
  5. Body type: Raw JSON
  6. Request content:
json
{
  "phone_number": "{{phone}}",
  "initial_context": { "customer_name": "{{name}}" }
}
Was this page helpful?
Open Dashboard →