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


## Description

> Macro (excerpt)
> 
> Retrieves a list of all Scrum boards within a project or system.

Retrieves a list of all Scrum boards within a project or system. Scrum boards are used for managing work items in the context of Scrum methodology, which includes defined sprint cycles.

|  |  |  |  |
| --- | --- | --- | --- |
| **Syntax** | getAllScrumBoards() | **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 = getAllScrumBoards();
for(JBoard b in boards) {
    runnerLog("Id: " + b.id); 
   runnerLog("Name: " + b.name);
}
```

## See also

> Macro (contentbylabel)