JavaScript
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>" }
Retrieve detailed information about a specific board
boardId
Bearer token
ObjectId
24
Default Response
Was this page helpful?