Lists power pipelines, boards, and any grouped collection of records. A sales pipeline is a list. A project board is a list. Each has its own fields (like “Stage” or “Priority”) on top of the record’s base fields.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 |
|---|---|---|
lists.list | List all lists in the workspace | object_type_slug (optional) |
lists.get | Get a single list with its fields and stages | list_id |
lists.create | Create a new list or pipeline | name, object_type_slug, fields |
lists.update | Update list name or settings | list_id, name |
lists.delete | Delete a list | list_id |
lists.add_field | Add a field to the list (e.g., a stage column) | list_id, name, field_type, config |
lists.remove_field | Remove a list field | list_id, field_id |
lists.entries | Get all entries in a list | list_id, filters, sort |
lists.add_entry | Add a record to the list | list_id, record_id, data |
lists.remove_entry | Remove a record from the list | list_id, record_id |
lists.update_entry | Update list-specific fields on an entry | list_id, record_id, data |
lists.bulk_add_entry | Add multiple records to a list at once | list_id, entries |