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

Prerequisites

  • Valid API key with board read permissions
  • Board ID, Table ID, and Row ID

Parameters

  • boardId: The board containing the table
  • tableId: The table containing the row
  • rowId: The specific row to retrieve

Response

Returns a single row object with all column values.

Authorizations

Authorization
string
header
required

Bearer token

Path Parameters

boardId
string
required

ObjectId

Required string length: 24
tableId
string
required

ObjectId

Required string length: 24
rowId
string
required

ObjectId

Required string length: 24

Response

Default Response

_id
string
required
rowId
number
required
owner
string
required
table
string
required
board
string
required
createdAt
string
required
updatedAt
string
required
columns
object[]
required