Trigger nodes are special nodes that start flow execution. Every flow must have at least one trigger. A flow can have multiple triggers if you want to reuse the same integration logic in different scenarios.Documentation Index
Fetch the complete documentation index at: https://docs.getmembrane.com/llms.txt
Use this file to discover all available pages before exploring further.
API Trigger
Type:api-trigger
The API Trigger allows you to launch a Flow Instance with optional input using your application’s API or SDK.
inputSchema– Optional schema that will be validated when the flow is triggered
Schedule Trigger
Type:schedule-trigger
The Schedule Trigger runs a flow at regular intervals as long as the Flow Instance is enabled.
intervalMinutes– How often the flow should run (5 = every 5 minutes, 60 = hourly, 1440 = daily)
Internal Event Trigger
Type:app-event-trigger
The Internal Event Trigger runs a flow when a specific event occurs in your application. Before using this trigger, you need to create an Internal Event.
appEventKey– Key of the internal event to listen tofilter– Optional filter to conditionally trigger the flow based on event data
Data Record Created Trigger
Type:data-record-created-trigger
This trigger launches a flow when a new data record is created in a selected Data Source.
dataSource– Specifies which Data Source collection to monitorfieldMapping– Optional Field Mapping to transform data from the external app to your app’s format
Data Record Updated Trigger
Type:data-record-updated-trigger
This trigger launches a flow when an existing data record is updated in a selected Data Source.
dataSource– Specifies which Data Source collection to monitorfieldMapping– Optional Field Mapping to transform updated data
Data Record Deleted Trigger
Type:data-record-deleted-trigger
This trigger launches a flow when a data record is deleted in a selected Data Source.
dataSource– Specifies which Data Source collection to monitorfieldMapping– Optional Field Mapping to transform data about the deleted record
Connector Event Trigger
Type:connector-event-trigger
The Connector Event Trigger launches flows in response to connector-specific events.
eventKey– Key of the event to trigger onfilter– Optional filter to conditionally trigger the flow