action gitlab_get_v3_keys_id { label: "Get single ssh key by id. Only available to admin users" description: "Get single ssh key by id. Only available to admin users" provider: gitlab method: GET path: "/v3/keys/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }