Execute CRUD operations on table data.
Operations:
read: Retrieve records with optional filtering and paginationcreate: Insert new recordsupdate: Update existing records (use override for full replacement)delete: Remove records matching filtersFiltering:
Use the filters parameter to filter records by field values.
Example: {"document_id": "550e8400-e29b-41d4-a716-446655440000"}
Column Selection:
Use the columns parameter to specify which fields to return in the response.
Documentation Index
Fetch the complete documentation index at: https://docs.clarifeye.ai/llms.txt
Use this file to discover all available pages before exploring further.
Use Authorization: Bearer
UUID of the project
UUID of the table
Type of data operation:
read: Retrieve records with optional filteringcreate: Insert new recordsupdate: Update existing recordsdelete: Remove recordsread, create, update, delete Array of records for create/update operations
Dictionary of field-value pairs to filter records.
Example: {"document_id": "550e8400-e29b-41d4-a716-446655440000"}
List of column names to include in the response
["id", "content", "document_id"]For update operations, whether to fully replace records
Optional UUID to target a specific table version
Maximum number of records to return (for read operations)
Number of records to skip for pagination (for read operations)