Skip to main content
GET
/
public
/
v1
/
board
/
{boardId}
/
table
/
{tableId}
/
row
/
{rowId}
/
md
Node.js SDK
import { CoperaAI } from '@copera.ai/sdk';

const copera = CoperaAI({
  apiKey: 'your-api-key-here'
});

const { content } = await copera.board.getRowDescription({
  boardId: 'board_id_here',
  tableId: 'table_id_here',
  rowId: 'row_id_here'
});
console.log(content);
{
  "content": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://developer.copera.ai/llms.txt

Use this file to discover all available pages before exploring further.

Overview

Returns the current Markdown content of a row’s description. The authenticated integration must have access to the board.

Response

Returns an object with a content field containing the Markdown body of the row description. If the row has no description, content is an empty string.

Authorizations

Authorization
string
header
required

Bearer token

Path Parameters

boardId
string
required

ObjectId

Required string length: 24
Pattern: ^[0-9a-fA-F]{24}$
tableId
string
required

ObjectId

Required string length: 24
Pattern: ^[0-9a-fA-F]{24}$
rowId
string
required

ObjectId

Required string length: 24
Pattern: ^[0-9a-fA-F]{24}$

Response

Default Response

content
string
required