action cloudflare_access_policies_list_access_app_policies { label: "List Access application policies" description: "Lists Access policies configured for an application. Returns both exclusively scoped and reusable policies used by the application." provider: cloudflare method: GET path: "/accounts/{account_id}/access/apps/{app_id}/policies" encoding: json input: { type: "object" properties: { account_id: { type: "string" description: "Identifier." } app_id: { type: "string" description: "UUID." } per_page: { type: "integer" description: "Number of results per page." } } required: ["account_id", "app_id"] additionalProperties: false } output: { type: "object" } }