Actions

Actions are tasks your AI agent can perform through this integration, such as creating, finding, or updating items.

Create Doc

Creates a new Coda doc. Optionally copies content from an existing doc. Returns HTTP 202 (Accepted) as doc creation is processed asynchronously.

Create Page

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.

Delete Doc

Deletes a Coda doc. Returns HTTP 202 (Accepted) as deletion is queued for processing. This action is permanent and cannot be undone.

Delete Page

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.

Delete Row

Deletes a specific row from a table. Returns HTTP 202 (Accepted) as deletion is queued for processing.

Delete Rows

Deletes multiple rows from a table by their IDs. Returns HTTP 202 (Accepted) as deletion is queued for processing.

Get Column

Returns detailed metadata for a specific column including name, type, formula (if calculated), default value, and format settings.

Get Doc

Returns metadata for the specified Coda doc, including name, owner, creation date, and other details.

Get Page

Returns detailed metadata for a specific page including title, subtitle, icon, image, parent/child relationships, and authors.

Get Row

Returns detailed data for a specific row including all cell values, creation date, and update date.

Get Table

Returns detailed metadata for a specific table or view, including row count, columns, display column, and sort configuration.

List Columns

Returns a list of columns in a table or view. Use this to discover the table structure before inserting or reading rows.

List Docs

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.

List Pages

Returns a list of pages in a Coda doc. Use this to discover the doc structure and navigate between pages.

List Rows

Returns a list of rows in a table or view. Supports filtering, sorting, and pagination. Use query parameter to filter rows by column values.

List Tables

Returns a list of tables in a Coda doc. By default, returns both base tables and views. Use tableTypes to filter results.

Update Doc

Updates metadata for a Coda doc (title and icon). Requires Doc Maker permissions for updating the title.

Update Page

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.

Update Row

Updates a specific row in a table. Only updates the cells provided, leaving others unchanged. Returns HTTP 202 (Accepted).

Upsert Rows

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.