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