add_issue_comment
Add a comment to a Backlog issue, specify content, notify users, and include attachments for enhanced collaboration and issue tracking.
Instructions
Adds a comment to an issue
Input Schema
Name | Required | Description | Default |
---|---|---|---|
attachmentId | No | Attachment IDs | |
content | Yes | Comment content | |
issueIdOrKey | Yes | Issue ID or issue key | |
notifiedUserId | No | User IDs to notify |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"attachmentId": {
"description": "Attachment IDs",
"items": {
"type": "number"
},
"type": "array"
},
"content": {
"description": "Comment content",
"type": "string"
},
"issueIdOrKey": {
"description": "Issue ID or issue key",
"type": [
"string",
"number"
]
},
"notifiedUserId": {
"description": "User IDs to notify",
"items": {
"type": "number"
},
"type": "array"
}
},
"required": [
"issueIdOrKey",
"content"
],
"type": "object"
}