Coda integration (Productivity, Data). Imported from open-connector.
https://coda.io/apis/v1/whoami
/docs
| Param | Type | Required | Description |
|---|---|---|---|
| isOwner | boolean | optional | Show only docs owned by the user. |
| isPublished | boolean | optional | Show only published docs. |
| query | string | optional | Search term used to filter down results. |
| sourceDoc | string | optional | Show only docs copied from the specified doc ID. |
| isStarred | boolean | optional | Whether to filter by starred state. |
| inGallery | boolean | optional | Show only docs visible within the gallery. |
| workspaceId | string | optional | Show only docs in the given workspace. |
| folderId | string | optional | Show only docs in the given folder. |
| limit | integer | optional | Maximum number of results to return. |
| pageToken | string | optional | Opaque token used to fetch the next page of results. |
/docs/{docId}
| Param | Type | Required | Description |
|---|---|---|---|
| docId | string | required | ID of the doc. |
/docs/{docId}/pages
| Param | Type | Required | Description |
|---|---|---|---|
| docId | string | required | ID of the doc. |
| limit | integer | optional | Maximum number of results to return. |
| pageToken | string | optional | Opaque token used to fetch the next page of results. |
/docs/{docId}/pages
| Param | Type | Required | Description |
|---|---|---|---|
| docId | string | required | ID of the doc. |
| name | string | required | Name of the page. |
| subtitle | string | optional | Subtitle of the page. |
| iconName | string | optional | Name of the page icon. |
| imageUrl | string | optional | URL of the cover image to use. |
| parentPageId | string | optional | ID of the parent page for a subpage. |
| pageContent | object | optional | Structured page content payload defined by the official Coda API. |
/docs/{docId}/tables
| Param | Type | Required | Description |
|---|---|---|---|
| docId | string | required | ID of the doc. |
| limit | integer | optional | Maximum number of results to return. |
| pageToken | string | optional | Opaque token used to fetch the next page of results. |
| sortBy | string | optional | Determines how to sort the returned tables. |
| tableTypes | array | optional | Table types to include in results. |
/docs/{docId}/tables/{tableIdOrName}
| Param | Type | Required | Description |
|---|---|---|---|
| docId | string | required | ID of the doc. |
| tableIdOrName | string | required | ID or name of the table. Names are discouraged because they are fragile. |
| useUpdatedTableLayouts | boolean | optional | Whether to request updated table layout handling. |
/docs/{docId}/tables/{tableIdOrName}/columns
| Param | Type | Required | Description |
|---|---|---|---|
| docId | string | required | ID of the doc. |
| tableIdOrName | string | required | ID or name of the table. Names are discouraged because they are fragile. |
| limit | integer | optional | Maximum number of results to return. |
| pageToken | string | optional | Opaque token used to fetch the next page of results. |
| visibleOnly | boolean | optional | Whether to return only visible columns for a base table. |
/docs/{docId}/tables/{tableIdOrName}/rows
| Param | Type | Required | Description |
|---|---|---|---|
| docId | string | required | ID of the doc. |
| tableIdOrName | string | required | ID or name of the table. Names are discouraged because they are fragile. |
| query | string | optional | Row query in the official `<column_id_or_name>:<value>` format. |
| sortBy | string | optional | Sort order for the returned rows. |
| useColumnNames | boolean | optional | Whether returned row values should be keyed by column names instead of IDs. |
| valueFormat | string | optional | Format for returned cell values. |
| visibleOnly | boolean | optional | Whether to return only visible rows and columns. |
| limit | integer | optional | Maximum number of results to return. |
| pageToken | string | optional | Opaque token used to fetch the next page of results. |
| syncToken | string | optional | Sync token from a previous call for incremental reads. |
/docs/{docId}/tables/{tableIdOrName}/rows
| Param | Type | Required | Description |
|---|---|---|---|
| docId | string | required | ID of the doc. |
| tableIdOrName | string | required | ID or name of the table. Names are discouraged because they are fragile. |
| disableParsing | boolean | optional | Whether Coda should skip automatic value parsing. |
| keyColumns | array | optional | Column IDs, URLs, or names used as upsert keys. |
| rows | array | required | Rows to insert or upsert. |
/mutationStatus/{requestId}
| Param | Type | Required | Description |
|---|---|---|---|
| requestId | string | required | Request ID returned by a previous mutation. |