Baserow-rs
Baserow-rs is a Rust client for the Baserow API. It provides a comprehensive set of features for interacting with Baserow tables, including CRUD operations and file management.
Authentication
Baserow supports two authentication methods:
- API Key (for server-to-server communication)
- JWT Token (for client-to-server communication)
Note: Some endpoints require a JWT token, some require an API key, and some require both.
Authentication (API Key)
let configuration = new
.base_url
.api_key
.build;
let baserow = with_configuration;
Authentication (JWT Token)
let configuration = new
.base_url
.email
.password
.build;
let baserow = with_configuration;
baserow.token_auth.await?;
Table Operations
Retrieve Table Rows
let baserow = with_configuration;
// retrieve rows from a table
let rows = baserow
.table_by_id
.rows
.filter_by
.order_by
.get
.await?;
Create a Row
let mut record: = new;
record.insert;
let row = baserow.table_by_id.create_one.await?;
Update a Row
let mut record: = new;
record.insert;
let updated_row = baserow.table_by_id.update.await?;
Get Table Fields
let fields = baserow.table_fields.await?;
File Operations
Upload a File
let file = open.unwrap;
let result = baserow.upload_file.await?;
Upload a File via URL
let result = baserow.upload_file_via_url.await?;
License
Apache 2.0