create_merge_request_note
Add comments to existing merge request discussion threads to provide feedback, answer questions, or continue conversations during code review processes.
Instructions
Add a new note to an existing merge request thread
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 | |
| body | Yes | The content of the note or reply | |
| created_at | No | Date the note was created at (ISO 8601 format) |
Input Schema (JSON Schema)
{
"properties": {
"body": {
"description": "The content of the note or reply",
"type": "string"
},
"created_at": {
"description": "Date the note was created at (ISO 8601 format)",
"type": "string"
},
"discussion_id": {
"description": "The ID of a thread",
"type": "string"
},
"merge_request_iid": {
"description": "The IID of a merge request",
"type": "number"
},
"project_id": {
"description": "Project ID or complete URL-encoded path to project",
"type": "string"
}
},
"required": [
"project_id",
"merge_request_iid",
"discussion_id",
"body"
],
"type": "object"
}