create_issue_note
Add notes or replies to existing GitLab issue discussions to provide updates, answer questions, or continue conversations within project issue threads.
Instructions
Add a new note to an existing issue thread
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 | |
| 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"
},
"issue_iid": {
"description": "The IID of an issue",
"type": "number"
},
"project_id": {
"description": "Project ID or complete URL-encoded path to project",
"type": "string"
}
},
"required": [
"project_id",
"issue_iid",
"discussion_id",
"body"
],
"type": "object"
}