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


## Description

> Macro (excerpt)
> 
> Retrieves all the issues or tasks associated with a specific epic.

Retrieves all the issues or tasks associated with a specific epic, offering an overview of the work items that contribute to the epic's objectives.

|  |  |  |  |
| --- | --- | --- | --- |
| **Syntax** | issuesInEpic(boardId, epicId) | **Package** |  |
| **Alias** |  | **Pkg Usage** |  |

## Parameters

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

## Return Type

**String []**

Issue belonging to that epic

## Example

```javascript
string [] issues = issuesInEpic(12345, "TEST-123");
return issues;
```

## See also

> Macro (contentbylabel)