update_issue_note
Modify an existing note in a GitLab issue thread to update information, correct errors, or add clarifications.
Instructions
Modify an existing issue thread note
Input Schema
TableJSON 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 |
Implementation Reference
- schemas.ts:772-777 (schema)Zod schema defining the input parameters for the 'update_issue_note' tool, including project_id, issue_iid, discussion_id, note_id, and body.export const UpdateIssueNoteSchema = ProjectParamsSchema.extend({ issue_iid: z.number().describe("The IID of an issue"), discussion_id: z.string().describe("The ID of a thread"), note_id: z.number().describe("The ID of a thread note"), body: z.string().describe("The content of the note or reply"), });
- schemas.ts:1357-1357 (schema)Type export for the UpdateIssueNoteSchema used by the update_issue_note tool.export type UpdateIssueNoteOptions = z.infer<typeof UpdateIssueNoteSchema>;