ActionCodaUpdated September 2026
What Coda docs can I access?
Short answer: You can list coda docs in Coda by hand from its own interface, but it won’t repeat itself. On TinyCommand, add the Coda List Coda Docs action to a workflow, map its 2 inputs from any upstream app, and it runs automatically every time the trigger fires. No code, and a free tier to start.
Inputs
The fields this action accepts.
Every field can be mapped from an upstream trigger, AI step, table row, or hard-coded literal.
| Field | Type | Required | Description |
|---|---|---|---|
Search Query query | string | Optional | Search Query. Example: Project Plan |
Limit limit | string | Optional | Limit. e.g. "25" |
Sample request
{"query": "e.g. Project Plan","limit": "25"}
Returns
{"items": [{"id": "AbCDeFGH","name": "Q1 Planning","owner": "john@example.com"}]}
Use these fields in downstream nodes for routing, logging, or error handling.
Triggered by
Apps that pair well as the trigger for List Coda Docs.
Any of these apps can fire this action as part of a workflow.
FAQ
Questions about List Coda Docs.
What does the List Coda Docs action do in Coda?
Returns every doc the connected token can see. Useful for resolving doc IDs at workflow-build time. The token's access mirrors the user's doc-share permissions.
What inputs does List Coda Docs require?
List Coda Docs has no required inputs. Sensible defaults are applied if you leave fields blank.
Can I use dynamic inputs from earlier workflow nodes?
Yes. Any field on this action can pull values from upstream nodes, whether that's a form response, a trigger payload, an AI output, or a lookup result.
What happens if Coda returns an error?
The run history shows the failed step with its input and the error message Coda returned, so you can fix the input and run the workflow again. Automatic retries are built into HTTP steps only, where you can also set your own retry count and delay.
Does List Coda Docs support batch operations?
Run List Coda Docs inside a loop to process each item in an array. TinyCommand does not throttle calls for you, so for large arrays add a Delay step if you need to stay within Coda's rate limits.
More actions
Other Coda actions.
Action
Delete Coda Row
Removes a specific row by ID. Irreversible. For cleanup workflows or for "row condition met → delete from this Coda table after processing".
ActionInsert Row
Inserts a new row with cell values addressed by column ID or name. Writes to formula columns are silently ignored — Coda recomputes formulas after insert. For the standard "external event → log to Coda" workflow.
ActionList Rows
Returns paginated rows with optional query filter (column-id:"value" equality only — for richer filtering, query loosely and filter downstream). Max page 1000.
ActionList Tables
Returns every table in a doc with name and row count. Useful for resolving table IDs at workflow-build time and for inventorying doc structure.
ActionUpdate Row
Partial update on cell values — only the passed columns change. Writes to formula columns are no-ops. For "external system changed → reflect in Coda" sync patterns.