JavaScript
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>" } ]
Retrieve all boards accessible to your integration
Bearer token
Default Response
Was this page helpful?