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