The Board API lets you interact with structured data in Copera. Boards contain tables, which contain rows with typed columns. You can list, read, and create records, authenticate rows against password columns, and manage row comments.
The Copera Node.js SDK and CLI fully support all Board operations. Choose your preferred tool below.
# List all boardscopera boards listcopera boards list --json # JSON output for scripting# Get board detailscopera boards get <board-id># List tablescopera tables list --board <board-id>copera tables get <table-id># List and get rowscopera rows list --board <id> --table <id>copera rows get <row-id># Create a rowcopera rows create --data '{"columns":[{"columnId":"col-1","value":"Value"}]}'echo '{"columns":[...]}' | copera rows create # from stdin
copera-cli
CLI installation, configuration, and full command reference