Short answer: You can list nocodb rows in NocoDB by hand from its own interface, but it won’t repeat itself. On TinyCommand, add the NocoDB List NocoDB Rows action to a workflow, map its 4 inputs from any upstream app, and it runs automatically every time the trigger fires. No code, and a free tier to start.
Every field can be mapped from an upstream trigger, AI step, table row, or hard-coded literal.
| Field | Type | Required | Description |
|---|---|---|---|
Table ID tableId | string | Required | Table ID. Example: tbl_abc123 |
Limit limit | string | Optional | Limit. e.g. "25" |
Offset offset | string | Optional | Offset. e.g. "0" |
Filter where | string | Optional | NocoDB filter syntax |
{"tableId": "e.g. tbl_abc123","limit": "25","offset": "0","where": "e.g. (Status,eq,Active)"}
{"list": [{"Id": 1,"Name": "John"}],"pageInfo": {"page": 1,"pageSize": 25,"totalRows": 42}}
Use these fields in downstream nodes for routing, logging, or error handling.
Any of these apps can fire this action as part of a workflow.