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

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

const board = await copera.board.getBoardDetails('board_id_here');
console.log(board);
{
  "_id": "<string>",
  "name": "<string>",
  "createdAt": "<string>",
  "updatedAt": "<string>",
  "description": "<string>"
}

Prerequisites

  • Valid API key with board read permissions
  • Board ID of the board you want to retrieve

Parameters

  • boardId: A 24-character hexadecimal ObjectId identifying the board

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
createdAt
string
required
updatedAt
string
required
description
string