Workflow Design

Workflow is a series of actions, designed to be executed automatically without human intervention, to carry out specific task more efficiently. In simpler term: if X happens, execute Y. Nodes are used to execute those actions, and they are connected via edges to form a workflow.

Workflow can only be started when "something" happened. Trigger or Webhook nodes are used to specify those events.


For instance, I can periodically check Coinmarketcap API for a token 24h price change. If price above certain threshold send a message to Telegram, else execute a BUY order in exchange.


What’s Next