Fluxyn Docs

HTTP

Sends a request to an external endpoint.

Network

Use this when you need to post data to another service without writing custom integration code.

When to use it

  • Send webhooks or server events.
  • Forward tracking payloads to a custom endpoint.

Routing behavior

Continues through its connected downstream path when it completes successfully.

Properties

PropertyTypeRequiredDetails
url
url
stringOptionalTarget URL (supports expressions)
method
method
selectOptionalHTTP method
bodyType
bodyType
selectOptionalRequest body content type
body
body
jsonOptionalRequest body
useAuth
useAuth
booleanOptionalEnable authentication
authType
authType
selectOptionalAuthentication type
authToken
authToken
stringOptionalAuthentication token or key
useQueryParams
useQueryParams
booleanOptionalEnable query parameters
queryParams
queryParams
key-valueOptionalURL query parameters
useHeaders
useHeaders
booleanOptionalEnable custom HTTP headers
headers
headers
key-valueOptionalCustom HTTP headers
onError
onError
selectOptionalBehavior on request failure

Common mistakes

  • Double-check the URL, method, and body format.
  • Be deliberate about failure behavior so the flow reacts the way you expect.

Related nodes