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