Skip to Content
WebhooksIntegration with Other Automation Tools

Integration with Other Automation Tools

Any tool that can send an HTTP POST with a JSON body can trigger a Dialora call. The integration is always the same three things:

MethodPOST
URLYour agent’s webhook URL
Body{"phone": "+14155550132", "name": "John Doe"}

Only phone is required. See Essential Data Fields.

Zapier

  1. Create a new Zap.
  2. Set your trigger (form submission, new lead, new row, etc.).
  3. Add the action Webhooks by Zapier β†’ POST.
  4. Enter your Dialora webhook URL.
  5. Set the payload type to JSON.
  6. Map your trigger’s phone field to phone, and the name field to name.

Make.com

  1. Create a scenario with your trigger module.
  2. Add an HTTP β†’ Make a request module.
  3. Method POST, your webhook URL, body type Raw, content type JSON.
  4. Map the fields into the JSON body.

There’s a fuller walkthrough at Integration with Make.

n8n

  1. Add your trigger node.
  2. Add an HTTP Request node: method POST, your webhook URL, body JSON.
  3. Map the fields.

Dialora also publishes dedicated n8n nodes β€” see the n8n integration page.

Pabbly Connect

  1. Create a workflow and add your trigger application.
  2. Add an API / Webhook action.
  3. Configure a POST request to your Dialora webhook URL with a JSON body.
  4. Map the contact data.

Anything else

The pattern holds for any tool β€” Workato, Tray, Retool, a cron job, a shell script. See Code Examples for cURL, Node.js, and Python.

The most common integration bug is mapping a national-format phone field straight through. Make sure the value that reaches phone includes the country code β€” see Phone Number Formatting.

Test before you switch it on

Trigger it once by hand and confirm your own phone rings β€” see Testing Your Webhook. A misconfigured automation that fires on every new lead is an expensive thing to discover in production.