update_issue_note
Modify an existing note in a GitLab issue discussion thread to update comment content or correct information.
Instructions
Modify an existing issue thread note
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | Project ID or complete URL-encoded path to project | |
| issue_iid | Yes | The IID of an issue | |
| discussion_id | Yes | The ID of a thread | |
| note_id | Yes | The ID of a thread note | |
| body | Yes | The content of the note or reply |
Input Schema (JSON Schema)
{
"properties": {
"body": {
"description": "The content of the note or reply",
"type": "string"
},
"discussion_id": {
"description": "The ID of a thread",
"type": "string"
},
"issue_iid": {
"description": "The IID of an issue",
"type": "number"
},
"note_id": {
"description": "The ID of a thread note",
"type": "number"
},
"project_id": {
"description": "Project ID or complete URL-encoded path to project",
"type": "string"
}
},
"required": [
"project_id",
"issue_iid",
"discussion_id",
"note_id",
"body"
],
"type": "object"
}