How it works
Edges are the code definitions for the connections between steps in the Automation graph and are defined and retrieved using the API. If creating an Automation via the API, define edges as an array of objects.Edge properties
Edges define connections 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 edge type.Use a non-default
edge_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