action gitlab_get_v3_groups_id { label: "Get a single group, with containing projects." description: "Get a single group, with containing projects." provider: gitlab method: GET path: "/v3/groups/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }