clay tables rows list.
Arguments
| Argument | Description |
|---|---|
tableId | The id of the table (regular or archive) the row belongs to. Required. |
rowId | The id of the row to fetch. Required. |
Output
| Field | Type | Description |
|---|---|---|
id | string | Row id. |
updatedAt | string | Last-updated timestamp. |
cells | object | Map of column id to a cell object (see below). |
Cell shape
Each cell is discriminated onstatus:
| Status | Fields | Meaning |
|---|---|---|
success | value (computed value), fields (object | null), isStale (optional true) | The cell has a computed value; structured content is in fields. |
error | error (string, optional) | The cell errored; error carries the message. |
running, queued, retry, rate_limited, awaiting_callback | — | The cell is still being computed. |
empty | — | The cell has no value yet. |
Errors
| Code | Exit | Notes |
|---|---|---|
not_found | 6 | No table or no row with that id in the workspace. |
auth_forbidden | 3 | The API key lacks the cli:all scope, or you cannot read this table. |

