action gitlab_get_v3_projects_id_hooks_hook_id { label: "Get a project hook" description: "Get a project hook" provider: gitlab method: GET path: "/v3/projects/{id}/hooks/{hook_id}" encoding: json input: { type: "object" properties: { hook_id: { type: "string" } id: { type: "string" } } required: ["hook_id", "id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }