Overview
This node interacts with Baserow, a no-code database platform, to perform CRUD operations on rows within a specified table. Specifically, the 'Delete' operation allows users to delete a row by its ID from a given table. This is useful for automating data cleanup or managing records dynamically within Baserow from workflows.
Use Case Examples
- Deleting a user record from a customer database table when the user unsubscribes.
- Removing outdated inventory entries from a product table automatically.
Properties
| Name | Meaning |
|---|---|
| Host | The base URL of the Baserow API endpoint to connect to. |
| Table ID | The identifier of the table from which the row will be deleted. |
| Row ID | The identifier of the specific row to delete from the table. |
| Additional Options | Optional settings such as disabling automatic field name mapping between Baserow's internal field IDs and user-friendly column names. |
Output
JSON
success- Indicates whether the row deletion was successful (true).
Dependencies
- Requires an API key credential for authenticating with the Baserow API.
Troubleshooting
- Ensure the provided Table ID and Row ID are correct and exist in Baserow; otherwise, the deletion will fail.
- Verify that the API key credential has sufficient permissions to delete rows in the specified table.
- If 'Disable field auto mapping' is enabled, ensure that field names in input data match Baserow's internal field IDs exactly to avoid errors.
Links
- Baserow API Documentation - Official documentation for Baserow's REST API endpoints and usage.