action cloudflare_access_groups_list_access_groups { label: "List Access groups" description: "Lists all Access groups." provider: cloudflare method: GET path: "/accounts/{account_id}/access/groups" encoding: json input: { type: "object" properties: { account_id: { type: "string" description: "Identifier." } name: { type: "string" description: "The name of the group." } search: { type: "string" description: "Search for groups by other listed query parameters." } } required: ["account_id"] additionalProperties: false } output: { type: "object" } }