Actions are tasks your AI agent can perform through this integration, such as creating, finding, or updating items.
Creates a new Coda doc. Optionally copies content from an existing doc. Returns HTTP 202 (Accepted) as doc creation is processed asynchronously.
Creates a new page in a Coda doc with optional content, subtitle, icon, and parent page. Returns HTTP 202 (Accepted) as creation is processed asynchronously. Requires Doc Maker permissions.
Deletes a Coda doc. Returns HTTP 202 (Accepted) as deletion is queued for processing. This action is permanent and cannot be undone.
Deletes the specified page from a Coda doc. Returns HTTP 202 (Accepted) as deletion is queued for processing. Use page IDs rather than names when possible.
Deletes a specific row from a table. Returns HTTP 202 (Accepted) as deletion is queued for processing.
Deletes multiple rows from a table by their IDs. Returns HTTP 202 (Accepted) as deletion is queued for processing.
Returns detailed metadata for a specific column including name, type, formula (if calculated), default value, and format settings.
Returns metadata for the specified Coda doc, including name, owner, creation date, and other details.
Returns detailed metadata for a specific page including title, subtitle, icon, image, parent/child relationships, and authors.
Returns detailed data for a specific row including all cell values, creation date, and update date.
Returns detailed metadata for a specific table or view, including row count, columns, display column, and sort configuration.
Returns a list of columns in a table or view. Use this to discover the table structure before inserting or reading rows.
Returns a list of Coda docs accessible by the user. Docs are returned in reverse chronological order by the latest event relevant to the user.
Returns a list of pages in a Coda doc. Use this to discover the doc structure and navigate between pages.
Returns a list of rows in a table or view. Supports filtering, sorting, and pagination. Use query parameter to filter rows by column values.
Returns a list of tables in a Coda doc. By default, returns both base tables and views. Use tableTypes to filter results.
Updates metadata for a Coda doc (title and icon). Requires Doc Maker permissions for updating the title.
Updates a page's metadata (name, subtitle, icon, image). Cannot update page content after creation. Returns HTTP 202 (Accepted). Requires Doc Maker permissions for updating title/icon.
Updates a specific row in a table. Only updates the cells provided, leaving others unchanged. Returns HTTP 202 (Accepted).
Inserts rows into a table, or updates existing rows if keyColumns are provided. Only works on base tables, not views. Returns HTTP 202 (Accepted) as processing is asynchronous.