Skip to main content
GET
/
public
/
v1
/
board
/
{boardId}
/
tables
Node.js SDK
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
      }
    ]
  }
]

Overview

Returns all tables associated with the specified board. Each table contains columns that define the structure of data.

Response

Returns an array of table objects with:
  • Table ID and name
  • Associated board ID
  • Column definitions (columnId, label, type, order)
  • Timestamps

Authorizations

Authorization
string
header
required

Bearer token

Path Parameters

boardId
string
required

ObjectId

Required string length: 24

Response

Default Response

_id
string
required
name
string
required
board
string
required
createdAt
string
required
updatedAt
string
required
columns
object[]
required