--- title: 'Coda' description: 'Manage documents, tables, and rows with the Coda API.' --- # Coda Manage documents, tables, and rows with the Coda API. | Detail | Value | |---|---| | Category | Productivity | | Base URL | `https://coda.io/apis/v1` | | Authentication | Bearer Token | | Endpoints | 5 | | Connector key | `coda` | ## Using Coda in a workflow 1. Go to **Connections** and click **New Connection**. 2. Pick **Coda** from the marketplace. 3. Enter your credentials (see Authentication above for what's expected). 4. In a workflow, drop an **API Call** node and select this connection. 5. Pick the operation you need from the Operation dropdown — see the table below. ## Available Endpoints | Endpoint | Summary | |---|---| | [GET /docs](./get_docs_data_listdocs) | List available docs | | [GET /docs/{docId}/tables](./get_docs_docid_tables_data_listtables) | List tables in a doc | | [GET /docs/{docId}/tables/{tableIdOrName}/rows](./get_docs_docid_tables_tableidorname_rows_data_listrows) | List rows in a table | | [POST /docs/{docId}/tables/{tableIdOrName}/rows](./post_docs_docid_tables_tableidorname_rows_data_upsertrows) | Insert or update rows | | [DELETE /docs/{docId}/tables/{tableIdOrName}/rows/{rowIdOrName}](./delete_docs_docid_tables_tableidorname_rows_rowidorname_data_deleterow) | Delete a row | > Each endpoint has its own page with parameter details, an example > `API Call` node configuration, and the response shape.