update_merge_request_note
Modify an existing merge request discussion thread note to update content or change resolution status in GitLab projects.
Instructions
Modify an existing merge request thread note
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | Project ID or complete URL-encoded path to project | |
| merge_request_iid | Yes | The IID of a merge request | |
| discussion_id | Yes | The ID of a thread | |
| note_id | Yes | The ID of a thread note | |
| body | No | The content of the note or reply | |
| resolved | No | Resolve or unresolve the note |
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"
},
"merge_request_iid": {
"description": "The IID of a merge request",
"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"
},
"resolved": {
"description": "Resolve or unresolve the note",
"type": "boolean"
}
},
"required": [
"project_id",
"merge_request_iid",
"discussion_id",
"note_id"
],
"type": "object"
}