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


## Description

> Macro (excerpt)
> 
> Retrieves a structure containing information about the changes made for a specific field on the specific event.

Retrieves a structure containing information about the changes made for a specific field on the specific event.

|  |  |  |  |
| --- | --- | --- | --- |
| **Syntax** | getEventIssueFieldChange(field) | **Package** |  |
| **Alias** |  | **Pkg Usage** |  |

## Parameters

| Parameter name | Type | Required | Description |
| --- | --- | --- | --- |
| field | String | Yes | Field name. |

## Return Type

**[JFieldChange](https://appfire.atlassian.net/wiki/spaces/PSJC/pages/435028065)**

## Example

```javascript
JFieldChange [] changes = getEventIssueFieldChange("description");
logPrint("ERROR", "Event Changes: " + changes);
```

## See also

> Macro (contentbylabel)