action gitlab_get_v3_projects_id_issues_noteable_id_notes { label: "Get a list of project +noteable+ notes" description: "Get a list of project +noteable+ notes" provider: gitlab method: GET path: "/v3/projects/{id}/issues/{noteable_id}/notes" encoding: json input: { type: "object" properties: { id: { type: "string" } noteable_id: { type: "string" } page: { type: "string" } per_page: { type: "string" } } required: ["id", "noteable_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }