Triggers are the starting point of every Baserow workflow. They define when your automation runs, whether on a schedule, when data changes in your tables, or when external services send requests. Configure your trigger first, then build actions that respond to it.
Triggers define when and why your automated workflow should start, ensuring your tasks run exactly when they’re needed.
Every Baserow workflow begins with a trigger, which is the event that initiates your entire automation sequence. Without a trigger, your workflow has no way to know when to execute. Triggers can be time-based (run every hour), data-driven (when a row is created), or external (when an API request is received).
Once configured and tested, triggers generate a data payload containing information about the triggering event. This payload can include:
All subsequent action nodes in your workflow can access and use this trigger data to perform their tasks.
Characteristic | Description |
---|---|
Always first | Triggers must be the first node in every workflow |
Cannot be deleted | You can only replace a trigger with a different trigger type |
Generates data | Creates a payload that subsequent actions can reference |
Must be tested | Requires testing to populate sample data for workflow building |
Baserow provides categories of triggers to match different automation needs.
When to use: Schedule workflows to run automatically at regular intervals, like generating daily reports or cleaning up old data.
The periodic trigger executes your workflow on a fixed schedule without requiring any external input.
Configuration:
Setting | Description | Example |
---|---|---|
Label | Descriptive name for your trigger | “Daily Sales Report” |
Interval | How often the workflow runs | Every hour, daily at 9 AM, weekly on Monday |
Common use cases:
When to use: React to changes in your database in real-time, like notifying users when data is added, updated, or removed.
These triggers monitor your Baserow tables and fire immediately when specified changes occur.
Trigger type | Starts when | Example use case |
---|---|---|
Rows are created | New rows are added to a table | Welcome new customers, assign tasks to team members |
Rows are updated | Existing rows are modified | Notify stakeholders of status changes, log edit history |
Rows are deleted | Rows are permanently removed | Archive deleted data elsewhere, send deletion confirmations |
Configuration (applies to all table-change triggers):
Table-change triggers fire for each affected row. If you create 10 rows at once, the workflow will execute 10 times, once per new row.
When to use: Connect external applications and services to your Baserow workflows, enabling integrations with tools like Zapier, Make, or custom applications.
This trigger creates a unique webhook URL that external services can call to start your workflow. When Baserow receives a request at this URL, the workflow executes with the request data as its payload.
Configuration:
Setting | Description | Recommendation |
---|---|---|
Label | Descriptive name for your webhook | “Stripe Payment Webhook” |
Webhook URL | Auto-generated URL to receive requests | Copy this URL to your external service |
Allowed HTTP methods | Which request types trigger the workflow | Select “Exclude GET” for security |
Why exclude GET requests?
GET requests are used by web browsers and crawlers for simple page visits. Excluding GET prevents your workflow from accidentally triggering when someone visits the URL in a browser or when search engines crawl it. Use POST, PUT, or other methods for intentional triggers.
Common use cases:
Testing generates sample data that you’ll use to configure your workflow’s actions. Always test your trigger before adding actions.
If no data appears, verify you performed the triggering action (like creating a row) in the correct table.
Example test request (using cURL):
curl -X POST [YOUR_WEBHOOK_URL] \
-H "Content-Type: application/json" \
-d '{"customer_name": "John Doe", "amount": 99.99}'
No. Each workflow can have only one trigger. If you need to respond to multiple different events, create separate workflows, one for each trigger type. However, you can use conditional logic (Router nodes) after a single trigger to handle different scenarios.
Each trigger event creates a new workflow execution. If your workflow is still processing and a new trigger fires, Baserow will start a second concurrent execution. Both will run independently with their own data payloads.
Yes, use the Start test run button to manually execute the workflow once with your test data. This is useful for debugging and development. However, manual test runs don’t replace actual trigger events in production.
Check the History tab in your automation. It logs every trigger event with timestamps, showing when workflows executed and whether they succeeded or failed.
Yes, use the toggle switch to pause your published workflow. This stops the trigger from firing while keeping your configuration intact. Toggle it back on to resume automation.
Testing executes the workflow once with sample data for development purposes. Publishing activates the workflow indefinitely; it will continue responding to trigger events until you pause or unpublish it.
The webhook URL itself doesn’t require authentication by default. For security, you can:
Cause: The triggering event hasn’t occurred yet.
Solution: For table-change triggers, manually create/update/delete a row in the specified table, then test again. For webhooks, send a test request to the URL first.
Cause: The workflow is paused, or the trigger event isn’t occurring.
Solution: Check the toggle switch shows “Live” (not paused). Verify the trigger event is actually happening in your database or that external services are sending requests.
Cause: The external service is using an excluded HTTP method or sending invalid data.
Solution: Verify the HTTP method is allowed (check your “Allowed HTTP methods” setting). Review the History tab for specific error messages.
Still need help? If you’re looking for something else, please feel free to make recommendations or ask us questions; we’re ready to assist you.