Actions are the core executable units in compound actions, think of them as your agent’s “doers”. Use this expression to invoke predefined actions.
action_name: HTTP actions (for API calls), script actions (for custom logic), and Compound Actions (for reusable workflows).Add an action step to the editor, then use the right-hand panel to wire it up. Below, follow the annotated steps to build a simple feature request update (e.g., via an HTTP action). Follow the steps to build a simple action expression.

update_output to avoid debugging headaches.feature_request_id: data.feature_id. Common Pitfall: Ensure vars exist upstream.The combined delay across all units (seconds, minutes, hours, days) cannot exceed 30 days.
days: "45"): The editor validates these inline and blocks you from saving.days: "data.wait_days"): The platform can only validate these at runtime. If the resolved value exceeds 30 days, the delay step fails with a runtime error when it executes.If you drive the delay from user input or upstream data, clamp the value in a prior script action to avoid runtime failures.
Retrieve user info via API, with progress feedback
The API response is stored un the user_details output key defined above and is now available in the data bank for any downstream steps.
Run a script action that add two strings together
Run a compound action that approves and notifies a ticket