JavaScript
import { CoperaAI } from '@copera.ai/sdk'; const copera = CoperaAI({ apiKey: 'your-api-key-here' }); const rows = await copera.board.listTableRows({ boardId: 'board_id_here', tableId: 'table_id_here' }); console.log(rows);
[ { "_id": "<string>", "rowId": 123, "owner": "<string>", "table": "<string>", "board": "<string>", "createdAt": "<string>", "updatedAt": "<string>", "columns": [ { "columnId": "<string>", "value": "<unknown>" } ] } ]
Get all rows from a table
Bearer token
ObjectId
24
Default Response
Show child attributes
Was this page helpful?