Baserow
API actions for the Baserow integration.
Baserow
Interact with Baserow databases, tables, and rows.
Create row
Insert a new row into a Baserow table.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
table_id | string | Yes | The Baserow table ID. |
fields | object | Yes | Field values for the new row. |
user_field_names | boolean | No | Whether the provided field keys use human-readable names. |
Response
{}List databases
Retrieve all databases accessible to the connected Baserow account.
Response
{
"databases": [
{}
]
}List rows
Retrieve rows from a Baserow table.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
table_id | string | Yes | The Baserow table ID. |
limit | number | No | Maximum number of rows to return. |
user_field_names | boolean | No | Whether to use human-readable field names. |
Response
{}List tables in a database
Fetch all tables for a specific Baserow database.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
database_id | string | Yes | The Baserow database ID. |
Response
{
"tables": [
{}
]
}Update row
Update an existing row in a Baserow table.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
table_id | string | Yes | The Baserow table ID. |
row_id | number | Yes | The row ID to update. |
fields | object | Yes | Field values to set on the row. |
user_field_names | boolean | No | Whether the provided field keys use human-readable names. |
Response
{}