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

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

const boards = await copera.board.listBoards();
console.log(boards);
[
  {
    "_id": "<string>",
    "name": "<string>",
    "createdAt": "<string>",
    "updatedAt": "<string>",
    "description": "<string>"
  }
]

Overview

This endpoint returns a list of all boards that your integration has access to within the workspace.

Response

Returns an array of board objects, each containing:
  • Board ID
  • Name and description
  • Creation and update timestamps

Authorizations

Authorization
string
header
required

Bearer token

Response

Default Response

_id
string
required
name
string
required
createdAt
string
required
updatedAt
string
required
description
string