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


|  |  |  |  |
| --- | --- | --- | --- |
| **Syntax** | startedSprints(board) | **Package** |  |
| **Alias** |  | **Pkg Usage** |  |

## Description

> Macro (excerpt)
> 
> Retrieves a list of sprints that are currently in progress, giving an overview of ongoing work periods.

Retrieves a list of sprints that are currently in progress, giving an overview of ongoing work periods.

## Parameters

| Parameter name | Type | Required | Description |
| --- | --- | --- | --- |
| board | Integer | Yes | The board id |

## Return Type

**Integer []**

## Example

```javascript
int [] sprintIds = startedSprints("agileBoard");
// or
number [] sprintIds = startedSprints(2);
```

> ⚠️ 1. If there is no board with that id, an exception will be raised.
> ⚠️ 2. The user must have sufficient permissions to view the board.

## See also

> Macro (contentbylabel)