Skip to main content
Send an HTTP request to any URL. Use this to connect Nedzo to services that don’t have a native integration — CRMs, analytics tools, automation platforms, or your own backend.

Configuration

Variables

Use variables in the URL, headers, and body:
When the body is valid JSON, variables are substituted in a JSON-safe way (special characters are properly escaped).

Output

The response data is available to subsequent steps. For example, if the webhook returns {"orderId": "123"}, you can reference {{nodeId.body.orderId}} in later actions.

Example: Send call data to a CRM

Common use cases

  • CRM updates — Push call outcomes to Salesforce, HubSpot, or any CRM with an API
  • Zapier / Make — Trigger Zapier Zaps or Make scenarios via webhook URL
  • n8n workflows — Trigger n8n automations from Nedzo
  • Custom logging — Send conversation data to your own analytics backend
  • Slack alternatives — Post to any service that accepts incoming webhooks

Limits

5xx, 408, and 429 responses are automatically retried. 4xx responses fail immediately.

Security

  • Only http:// and https:// URLs are allowed
  • Requests to private/internal IP addresses are blocked (localhost, 10.x.x.x, 172.16.x.x, 192.168.x.x, etc.)
  • Always use HTTPS for endpoints that require authentication