action cloudflare_access_groups_get_an_access_group { label: "Get an Access group" description: "Fetches a single Access group." provider: cloudflare method: GET path: "/accounts/{account_id}/access/groups/{group_id}" encoding: json input: { type: "object" properties: { account_id: { type: "string" description: "Identifier." } group_id: { type: "string" description: "UUID." } } required: ["account_id", "group_id"] additionalProperties: false } output: { type: "object" } }