> ## 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.

# List Comments Of Alert

Return a list of an alert's comments.
**Note:**
The following permission is required:

* `SIC_READ_ALERTS` (9ea2b8a3-593f-4bab-92f5-d0af9b563f6f).

<Note>
  External Documentation

  To learn more, visit the [Sekoia.io documentation](https://docs.sekoia.io/developer/api/#tag/Alerts/get_alert_comment_resource).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter        | Description                                                                       |
  | ---------------- | --------------------------------------------------------------------------------- |
  | Alert UUID       | The UUID of the alert. Can be obtained by using the `List Alerts` action.         |
  | Limit            | The number of items to retrieve. The allowed range is 1-100. The default is `20`. |
  | Offset           | The number of items to skip when paginating. Must be bigger or equal to `0`.      |
  | Return All Pages | Automatically fetch all resources, page by page.                                  |
</div>

## Example Output

```json theme={"dark"}
{
	"items": [
		{
			"uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
			"content": "string",
			"author": "string",
			"date": 0,
			"created_by": "string",
			"created_by_type": "string",
			"unseen": true
		}
	],
	"total": 0
}
```

## Workflow Library Example

[List Comments of Alert with Sekoiaio and Send Results Via Email](https://library.blinkops.com/workflows/list-comments-of-alert-with-sekoiaio-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/list-comments-of-alert-with-sekoiaio-and-send-results-via-email/canvas" />
</div>
