> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Issue Updates

Returns Issues in their current state, but ordered by their modification time.
Polling this endpoint starting at the current timestamp will result in getting a list of issues as they're being updated or added. Polling with no timestamp to start with will list all issues in their current state and continue returning issues as they're being added or changed over time.
Responses from this endpoint may contain more elements than the declared count if the last item in the returned set was not the last with the same timestamp value.

<Note>
  External Documentation

  To learn more, visit the [Egnyte Secure Govern documentation](https://developers.egnyteprotect.com/#tag/issues/operation/getIssueUpdates).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter      | Description                                                                        |
  | -------------- | ---------------------------------------------------------------------------------- |
  | Count          | Approximate number of items to return. API doesn't guarantee the exact match.      |
  | Format         | Either short or full to include less or more issue details.                        |
  | Modified After | Most recent known timestamp, return items which were updated after that timestamp. |
</div>

## Example Output

```json theme={"dark"}
{
	"issues": [
		{
			"detected": 0,
			"id": 0,
			"item": {
				"displayName": "string",
				"issueInitiator": {
					"email": "string",
					"name": "string"
				},
				"type": "string"
			},
			"policies": [],
			"severity": 0,
			"source": "string",
			"sourceId": "string",
			"sourceLabel": "string",
			"sourceType": "string",
			"status": "string",
			"type": "string",
			"updated": 0
		}
	],
	"modifiedAfter": 0
}
```

## Workflow Library Example

[Get Issue Updates with Egnyte Secure Govern and Send Results Via Email](https://library.blinkops.com/workflows/get-issue-updates-with-egnyte-secure-govern-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/get-issue-updates-with-egnyte-secure-govern-and-send-results-via-email/canvas" />
</div>
