How it works
Connections are the code definitions for the links between steps in the Automation graph and are defined and retrieved using the API. If creating an Automation via the API, define connections as an array of objects.Connection properties
Connections define the links between steps in the automation graph.This is the
key of the origin step.This is the
key of the destination step.The type of connection between the origin and destination steps. Most
automations use the default connection type.Use a non-default
type only when the origin step can branch to multiple
destinations:- For
wait_for_event, useevent_receivedortimeout. - For
condition, usecondition_metorcondition_not_met.
defaultcondition_metcondition_not_mettimeoutevent_received
Example