Collections
API endpoints for managing bases, collections, fields, and records.
Bases
| Method | Endpoint | Description |
|---|---|---|
| POST | /bases | Create base |
| GET | /bases | List bases |
| GET | /bases/{baseId} | Get base |
| PUT | /bases/{baseId} | Update base |
| DELETE | /bases/{baseId} | Delete base |
Collections
| Method | Endpoint | Description |
|---|---|---|
| POST | /collections | Create collection |
| GET | /collections | List collections |
| GET | /collections/{collectionId} | Get collection |
| PUT | /collections/{collectionId} | Update collection |
| DELETE | /collections/{collectionId} | Delete collection |
Fields
| Method | Endpoint | Description |
|---|---|---|
| POST | /collections/{collectionId}/fields | Add field |
| PUT | /collections/{collectionId}/fields/{fieldId} | Update field |
| DELETE | /collections/{collectionId}/fields/{fieldId} | Delete field |
Records
| Method | Endpoint | Description |
|---|---|---|
| POST | /collections/{collectionId}/records | Create record |
| POST | /collections/{collectionId}/records/find | Find records |
| GET | /collections/{collectionId}/records/{recordId} | Get record |
| PUT | /collections/{collectionId}/records/{recordId} | Update record |
| DELETE | /collections/{collectionId}/records/{recordId} | Delete record |