Records are the rows in your object types. A company, a contact, a deal — each is a record with dynamic fields defined by its object type.Documentation Index
Fetch the complete documentation index at: https://docs.supersonic.cv/llms.txt
Use this file to discover all available pages before exploring further.
Tools
| Tool | Description | Key Params |
|---|---|---|
records.list | List records for an object type | object_type_slug, filters, sort, page, page_size |
records.get | Get a single record by ID | object_type_slug, record_id |
records.create | Create a new record | object_type_slug, data |
records.update | Update a record’s fields | object_type_slug, record_id, data |
records.delete | Soft-delete a record | object_type_slug, record_id |
records.search | Full-text search across records | query, object_type_slug (optional) |
records.link | Create a relation between two records | from_record_id, to_record_id |
records.unlink | Remove a relation between two records | from_record_id, to_record_id |
records.bulk_create | Create multiple records at once | object_type_slug, records |
records.search searches across all object types by default. Pass object_type_slug to narrow results to a single type.