Skip to content

Triggers Overview

Triggers are post-execution actions that deliver your scraped data to external destinations. They run automatically after a project finishes successfully.

  1. Your automation runs and extracts data.
  2. When the run completes, RTILA checks the project’s triggers.
  3. Each trigger is executed sequentially.
  4. Data flows from one trigger to the next via output variables.

Triggers configuration showing a flow diagram with connected trigger nodes

Category Triggers Description
APIs/Webhooks REST API, GraphQL, SOAP Send data to any web API
Cloud Storage AWS S3, GCP Storage, Azure Blob Upload files to cloud storage
Databases PostgreSQL, MySQL, MongoDB Write data to databases
Email SMTP Send email notifications
File Formats Export, Convert, Compress Export and transform files
File Transfer SFTP, FTPS, WebDAV Transfer files to servers
Messaging Queues RabbitMQ, Kafka, AWS SQS Publish messages to queues
Spreadsheets Google Sheets, Excel Write data to spreadsheets
BI Tools & Alerting Power BI, Tableau, Slack, Teams, Webhooks Send alerts and BI data
ITSM, PM & ERP JIRA, ServiceNow, SAP Create tickets and records
Cloud Orchestration Azure Data Factory, Dataiku, Airflow Trigger pipeline runs
BI Tools Qlik Sense, Superset, Looker, MicroStrategy Interact with BI platforms
Cloud Warehouses Snowflake, BigQuery, Databricks, MSSQL, Oracle Query cloud data platforms
Data Stores & Search Redis, Elasticsearch, Teradata, Sybase Operate on data stores
  1. Go to Automation Projects.
  2. Select the project.
  3. Click Triggers in the ribbon.
  4. The Triggers Flow view opens.
  5. Click + to add a trigger.
  6. Choose a trigger type.
  7. Configure the trigger parameters.

Triggers flow view showing the start node and connected trigger nodes with the Add button

Triggers are connected in a flow:

Project Finish → Trigger 1 → Trigger 2 → Trigger 3 → ...

Each trigger’s output can be used by the next trigger via output variables.

Each trigger can save its output to a variable. The next trigger can reference it:

Trigger 1: REST API → output_variable: api_response
Trigger 2: Email → body: "API returned: ${api_response}"
Type Description Examples
Bulk Runs once with all data Export to file, Parquet export, XML processing
Per-record Runs for each record REST API, Email, Database insert

Bulk triggers are indicated with a “Bulk: runs once with all data” badge.

  • Click a trigger node to select it.
  • Use the and buttons to reorder.
  • Click 🗑️ to delete.
  • Click 📋 to clone.

Selected trigger node showing action buttons: move left, move right, clone, delete