Appearance
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
- Go to Connections and click New Connection.
- Pick Coda from the marketplace.
- Enter your credentials (see Authentication above for what's expected).
- In a workflow, drop an API Call node and select this connection.
- Pick the operation you need from the Operation dropdown — the full list is below.
Available endpoints
| Endpoint | Summary |
|---|---|
GET /docs | List available docs |
GET /docs/{docId}/tables | List tables in a doc |
GET /docs/{docId}/tables/{tableIdOrName}/rows | List rows in a table |
POST /docs/{docId}/tables/{tableIdOrName}/rows | Insert or update rows |
DELETE /docs/{docId}/tables/{tableIdOrName}/rows/{rowIdOrName} | Delete a row |
Each endpoint is documented in full below. Use the outline on the right to jump to one.
GET /docs
List available docs
| Detail | Value |
|---|---|
| Operation ID | data.listDocs |
| Method | GET |
| Path | /docs |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
limit | query | integer | No |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Coda connection from the Connection dropdown.
- In the Operation dropdown, select
data.listDocs. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Coda API reference.
GET /docs/{docId}/tables
List tables in a doc
| Detail | Value |
|---|---|
| Operation ID | data.listTables |
| Method | GET |
| Path | /docs/{docId}/tables |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
docId | path | string | Yes |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Coda connection from the Connection dropdown.
- In the Operation dropdown, select
data.listTables. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Coda API reference.
GET /docs/{docId}/tables/{tableIdOrName}/rows
List rows in a table
| Detail | Value |
|---|---|
| Operation ID | data.listRows |
| Method | GET |
| Path | /docs/{docId}/tables/{tableIdOrName}/rows |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
docId | path | string | Yes |
tableIdOrName | path | string | Yes |
limit | query | integer | No |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Coda connection from the Connection dropdown.
- In the Operation dropdown, select
data.listRows. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Coda API reference.
POST /docs/{docId}/tables/{tableIdOrName}/rows
Insert or update rows
| Detail | Value |
|---|---|
| Operation ID | data.upsertRows |
| Method | POST |
| Path | /docs/{docId}/tables/{tableIdOrName}/rows |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
docId | path | string | Yes |
tableIdOrName | path | string | Yes |
Request Body
| Field | Type |
|---|---|
rows | array |
keyColumns | array |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Coda connection from the Connection dropdown.
- In the Operation dropdown, select
data.upsertRows. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Coda API reference.
DELETE /docs/{docId}/tables/{tableIdOrName}/rows/{rowIdOrName}
Delete a row
| Detail | Value |
|---|---|
| Operation ID | data.deleteRow |
| Method | DELETE |
| Path | /docs/{docId}/tables/{tableIdOrName}/rows/{rowIdOrName} |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
docId | path | string | Yes |
tableIdOrName | path | string | Yes |
rowIdOrName | path | string | Yes |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Coda connection from the Connection dropdown.
- In the Operation dropdown, select
data.deleteRow. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Coda API reference.