---
title: "getAllKanbanBoards"
canonical: "https://support.appfire.com/space/PSJC/567148594/getAllKanbanBoards"
format: markdown
---
> Macro (aura-html)


## Description

> Macro (excerpt)
> 
> Retrieves a list of all Kanban boards available in a project or system.

Retrieves a list of all Kanban boards available in a project or system. Kanban boards are used for visualizing and managing work items in a Kanban methodology, typically without defined sprint cycles.

|  |  |  |  |
| --- | --- | --- | --- |
| **Syntax** | getAllKanbanBoards() | **Package** |  |
| **Alias** |  | **Pkg Usage** |  |

## Return Type

**[JBoard []](https://appfire.atlassian.net/wiki/spaces/PSJC/pages/435028065)**

Returns all the boards it can find.

## Example

```javascript
JBoard [] boards = getAllKanbanBoards();
for(JBoard b in boards) {
    runnerLog("Id: " + b.id); 
   runnerLog("Name: " + b.name);
}
```

## See also

> Macro (contentbylabel)