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
| Property | Type | Required | Details |
|---|---|---|---|
functionName functionName | string | Optional | Global function to call (e.g., gtag, dataLayer.push) |
arguments arguments | array | Optional | Dynamic string arguments (supports expressions) |
Common mistakes
- The target function must exist already.
- This is browser-only behavior.