action cloudflare_access_policies_get_an_access_policy { label: "Get an Access application policy" description: "Fetches a single Access policy configured for an application. Returns both exclusively owned and reusable policies used by the application." provider: cloudflare method: GET path: "/accounts/{account_id}/access/apps/{app_id}/policies/{policy_id}" encoding: json input: { type: "object" properties: { account_id: { type: "string" description: "Identifier." } app_id: { type: "string" description: "UUID." } policy_id: { type: "string" description: "UUID." } } required: ["account_id", "app_id", "policy_id"] additionalProperties: false } output: { type: "object" } }