Skip to main content

Typed access

Board operations are reached via client.Api.Board on EksoClient.
await client.Api.Board.ListAsync();
For the full set of methods and request/response types, your IDE’s auto-completion is the fastest discovery path. Each method below maps 1-to-1 to an HTTP route in the API Reference.

Operations

MethodRouteSummary
GET/api/boardLists all boards visible to the current user.
GET/api/board/portfolioReturns a portfolio-level summary across all boards: aggregate metrics and per-board health, financials, item counts, cycle counts, and status distribution.
GET/api/board/statsReturns item count statistics grouped by board.
GET/api/board/{id}Retrieves a single board by ID.
POST/api/boardCreates a new board.
PUT/api/board/{id}Updates an existing board.
DELETE/api/board/{id}Deletes a board by ID.

See also