Records
List Records
List records in a collection.
Supports pagination, sorting, and filtering.
GET
List Records
Path Parameters
Query Parameters
Required range:
x >= 0Required range:
1 <= x <= 100Previous
Create RecordCreate a new record in a collection.
Validates the request data against the collection schema, auto-generates
a record ID, and sets system fields (account_id, created_at, created_by).
Args:
collection: The collection name (from URL path).
data: The record data (request body). May include 'account_id' for superadmins.
current_user: The authenticated user, or None for anonymous.
auth_context: Authorization context for permission checking.
session: Database session.
Returns:
The created record with all fields including system fields.
Next
List Records