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


## Description

> Macro (excerpt)
> 
> Removes the association between an issue and an epic.

Removes the association between an issue and an epic, indicating that the issue is no longer considered part of the larger project goal represented by the epic.

|  |  |  |  |
| --- | --- | --- | --- |
| **Syntax** | removeIssueFromEpic(issue_key) | **Package** |  |
| **Alias** |  | **Pkg Usage** |  |

## Parameters

| Parameter name | Type | Required | Description |
| --- | --- | --- | --- |
| issue_key | String | Yes | the issue key |

## Return Type

**Boolean**

True of operation succeeded

## Example

```javascript
return removeIssueFromEpic("TEST-123");
```

Returns true if successful, false if otherwise.

## See also

> Macro (contentbylabel)