> ## 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 Problem Comments

Gets all comments on the specified problem.

## Basic Parameters

<div className="integrations-table">
  | Parameter  | Description                     |
  | ---------- | ------------------------------- |
  | Problem ID | The ID of the required problem. |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter     | Description                                                                                                                                                                                                                                                                                                                                                                        |
  | ------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Next Page Key | The cursor for the next page of results. You can find it in the **nextPageKey** field of the previous response. <br /><br />The first page is always returned if you don't specify the **nextPageKey** query parameter. <br /><br />When the **nextPageKey** is set to obtain subsequent pages, you must omit all other query parameters except the optional **fields** parameter. |
  | Page Size     | The amount of comments in a single response payload. <br /><br />The maximal allowed page size is 500. <br /><br />If not set, 10 is used.                                                                                                                                                                                                                                         |
</div>

## Example Output

```json theme={"dark"}
{
	"comments": [
		{
			"authorName": "The user who wrote the comment.",
			"content": "The text of the comment.",
			"context": "The context of the comment.",
			"createdAtTimestamp": 0,
			"id": "The ID of the comment."
		}
	],
	"nextPageKey": "AQAAABQBAAAABQ==",
	"pageSize": 0,
	"totalCount": 0
}
```

## Workflow Library Example

[Get Problem Comments with Dynatrace and Send Results Via Email](https://library.blinkops.com/workflows/get-problem-comments-with-dynatrace-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-problem-comments-with-dynatrace-and-send-results-via-email/canvas" />
</div>
