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



|  |  |  |  |
| --- | --- | --- | --- |
| **Syntax** | getIssueEntityPropertyValue(issueKey, entityName, propertyKey) | **Package** |  |
| **Alias** |  | **Pkg Usage** |  |

## Description

> Macro (excerpt)
> 
> Returns the entity property value as a String.

Returns the entity property value as a String.

## Parameters

| Parameter name | Type | Required | Description |
| --- | --- | --- | --- |
| issueKey | String | Yes | Key of the selected issue. |
| entityName | String | Yes | Entity name |
| propertyKey | String | Yes | Property key |

## Return Type

**String**

The returned value represents the entity property of the issue.

## Example

```javascript
return getIssueProperty("JSD-2", "IssueProperty", "request.channel.type");
```

## See also

> Macro (contentbylabel)