---
title: "getIssueLinksDetail"
canonical: "https://support.appfire.com/space/PSJ/15483556/getIssueLinksDetail"
format: markdown
---
> Macro (aura-html)


|  |  |  |  |
| --- | --- | --- | --- |
| **Syntax** | getIssueLinksDetail(issueKey) | **Package** |  |
| **Alias** |  | **Pkg Usage** |  |

## Description

> Macro (excerpt)
> 
> Returns all the details about the links of an issue key.

Returns all the details about the links of an issue key. 

## Parameters

| Parameter name | Type | Required | Description |
| --- | --- | --- | --- |
| issueKey | String | Yes | Issue key. |

## Return Type

**[JIssueLink []](https://appfire.atlassian.net/wiki/spaces/PSJ/pages/15487117)**

## Examples

### Example 1

```
return getIssueLinksDetail("TEST-1");
```

### Example 2

```
JIssueLink[] jIssueLinks = getIssueLinksDetail("TEST-1");
for(JIssueLink jIssueLink in jIssueLinks){
    runnerLog("The linked issue " + jIssueLink.issue + " it has the following properties: "); 
    runnerLog("- link id : " + jIssueLink.id); 
    runnerLog("- link name : " +  jIssueLink.name);
    runnerLog("- direction : " + jIssueLink.direction);
    runnerLog("- description : " + jIssueLink.description);
}
```

## See also

> Macro (contentbylabel)