Skip to main content

Typed access

Cycle operations are reached via client.Api.Board.Cycle on EksoClient.
await client.Api.Board.Cycle.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/board/cycleLists all cycles across all boards.
GET/api/board/{boardId}/cycleLists all cycles for a specific board.
GET/api/board/{boardId}/cycle/{cycleId}Retrieves a single cycle by ID within a board.
GET/api/board/{boardId}/cycle/{cycleId}/itemLists all items assigned to a specific cycle within a board.
GET/api/cycle/statsReturns item count statistics grouped by cycle.
POST/api/board/{boardId}/cycleCreates a new cycle on the specified board.
PUT/api/board/{boardId}/cycle/{cycleId}Updates an existing cycle, and automatically approves all item time entries if the cycle is being closed.
DELETE/api/board/{boardId}/cycle/{cycleId}Deletes a cycle by ID, only if it belongs to the specified board.

See also