Authentication
Auth type: API Key (Personal Access Token) Create a token at airtable.com/create/tokens withdata.records:read, data.records:write, and schema.bases:read scopes.
Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Set up the Airtable connector in Collabase Automation: API Key authentication, 3 triggers such as Record Created and 7 actions such as List Records.
data.records:read, data.records:write, and schema.bases:read scopes.
| Credential | Description |
|---|---|
| Personal Access Token | Your Airtable personal access token |
| Trigger | When it fires |
|---|---|
| Record Created | A new record is added to a table |
| Record Updated | An existing record’s fields are modified |
| Record Deleted | A record is removed from a table |
| Action | Key inputs | Key outputs |
|---|---|---|
| List Records | baseId, tableIdOrName, filterFormula, sort[], view, maxRecords | records[], count |
| Get Record | baseId, tableIdOrName, recordId | recordId, fields, createdTime |
| Create Record | baseId, tableIdOrName, fields{} (JSON) | recordId, fields |
| Update Record | baseId, tableIdOrName, recordId, fields{} | recordId, fields |
| Delete Record | baseId, tableIdOrName, recordId | deleted, recordId |
| Search Records | baseId, tableIdOrName, searchField, searchValue | records[], count |
| List Bases | — | bases[] — id, name, permissionLevel |
fields as a JSON object where keys are the exact column names in Airtable. Field names are case-sensitive and must match the column headers exactly.