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

# Add Comment

Adds a comment to an issue.

<Note>
  External Documentation

  To learn more, visit the [Jira documentation](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-comments/#api-rest-api-3-issue-issueidorkey-comment-post).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter       | Description                                                                                                                                                                                                                                           |
  | --------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | ADF Content     | The ADF-formatted content to add as a comment to the issue. For more information on ADF please visit [Atlassian's Documentation](https://developer.atlassian.com/cloud/jira/platform/apis/document/structure/).                                       |
  | Content Type    | Select the format for your comment content - text or ADF (Atlassian Document Format).<br /><br />For more information on ADF, please visit [Atlassian's Documentation](https://developer.atlassian.com/cloud/jira/platform/apis/document/structure/). |
  | Issue ID Or Key | The ID or key of the issue.                                                                                                                                                                                                                           |
  | Text Content    | The textual content of the comment that will be added to the issue.                                                                                                                                                                                   |
</div>

## Example Output

```json theme={"dark"}
{
	"self": "https://example.com",
	"id": "10000",
	"author": {
		"self": "https://example.com",
		"accountId": "1234567890",
		"emailAddress": "exaxmple@blinkops.com",
		"avatarUrls": {
			"48x48": "https://example.com",
			"24x24": "https://example.com",
			"16x16": "https://example.com",
			"32x32": "https://example.com"
		},
		"displayName": "User",
		"active": true,
		"timeZone": "Asia/Jerusalem",
		"accountType": "atlassian"
	},
	"body": {
		"content": [
			{
				"content": [
					{
						"text": "Body content",
						"type": "text"
					}
				],
				"type": "paragraph"
			}
		],
		"type": "doc",
		"version": 1
	},
	"updateAuthor": {
		"self": "https://example.com",
		"accountId": "1234567890",
		"emailAddress": "exaxmple@blinkops.com",
		"avatarUrls": {
			"48x48": "https://example.com",
			"24x24": "https://example.com",
			"16x16": "https://example.com",
			"32x32": "https://example.com"
		},
		"displayName": "User",
		"active": true,
		"timeZone": "Asia/Jerusalem",
		"accountType": "atlassian"
	},
	"created": "2022-12-14T12:54:15.355+0200",
	"updated": "2022-12-14T12:54:15.355+0200",
	"jsdPublic": true
}
```

## Workflow Library Example

[Add Comment with Jira and Send Results Via Email](https://library.blinkops.com/workflows/add-comment-with-jira-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/add-comment-with-jira-and-send-results-via-email/canvas" />
</div>
