Lodol Docs

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

ParameterTypeRequiredDescription
table_idstringYesThe Baserow table ID.
fieldsobjectYesField values for the new row.
user_field_namesbooleanNoWhether 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

ParameterTypeRequiredDescription
table_idstringYesThe Baserow table ID.
limitnumberNoMaximum number of rows to return.
user_field_namesbooleanNoWhether to use human-readable field names.

Response

{}

List tables in a database

Fetch all tables for a specific Baserow database.

Parameters

ParameterTypeRequiredDescription
database_idstringYesThe Baserow database ID.

Response

{
  "tables": [
    {}
  ]
}

Update row

Update an existing row in a Baserow table.

Parameters

ParameterTypeRequiredDescription
table_idstringYesThe Baserow table ID.
row_idnumberYesThe row ID to update.
fieldsobjectYesField values to set on the row.
user_field_namesbooleanNoWhether the provided field keys use human-readable names.

Response

{}

On this page