Triggers: Event

Events are system triggers a user does not visibly notice. You can use events to trigger specific flows. This is useful, for example, to automatically show a welcome message or trigger a flow from cloud code or webhooks.

Events also enable you to design complex apps that reuses flows.

📘

Note: You can only use Events as the starting trigger of a flow.

Trigger event using code actions action:

async payload => {  
  trigger('EVENT_NAME')  
}