action gitlab_get_v3_projects_id_issues_noteable_id_notes_note_id { label: "Get a single +noteable+ note" description: "Get a single +noteable+ note" provider: gitlab method: GET path: "/v3/projects/{id}/issues/{noteable_id}/notes/{note_id}" encoding: json input: { type: "object" properties: { id: { type: "string" } note_id: { type: "string" } noteable_id: { type: "string" } } required: ["id", "note_id", "noteable_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }