Skip to main content

Overview

Make authenticated outbound HTTP requests to any third-party API from inside a workflow. Call actions with automationType, action, and params from any workflow node that supports automations.

Authentication

  • Per-request authentication (Bearer token, Basic auth, API key header, or none). Optional outbound proxy for geo/IP-restricted APIs.

Available Actions

The Proxy integration exposes a single generic HTTP request. Configure method, URL, auth, headers, and body in params. Click any example for a ready-to-copy payload.

Examples

Example 1: Proxy - POST JSON

POST JSON to httpbin.org

Example 2: Proxy - Async (for slow targets)

Use async+callbackUrl for slow targets (api.plura.ai, Salesforce) to avoid timeouts. Returns immediately; result POSTed to callbackUrl.

Example 3: Proxy - GET with Query

GET with query params to httpbin.org

Example 4: Proxy - PUT JSON

PUT JSON to httpbin.org

Example 5: Proxy - DELETE

DELETE with query params to httpbin.org