Fluxyn Docs
NodesCoding

Call Function

Calls a global function such as `gtag` or `dataLayer.push`.

Coding

Use this when a vendor API already exists on the page and you only need to call it with runtime values.

When to use it

  • Push into a queue created earlier in the flow.
  • Call a browser global that an injected script registered.

Routing behavior

Continues through its connected downstream path when it completes successfully.

Properties

PropertyTypeRequiredDetails
functionName
functionName
stringOptionalGlobal function to call (e.g., gtag, dataLayer.push)
arguments
arguments
arrayOptionalDynamic string arguments (supports expressions)

Common mistakes

  • The target function must exist already.
  • This is browser-only behavior.

Related nodes