action cloudflare_access_policies_get_an_access_reusable_policy { label: "Get an Access reusable policy" description: "Fetches a single Access reusable policy." provider: cloudflare method: GET path: "/accounts/{account_id}/access/policies/{policy_id}" encoding: json input: { type: "object" properties: { account_id: { type: "string" description: "Identifier." } policy_id: { type: "string" description: "The UUID of the policy" } } required: ["account_id", "policy_id"] additionalProperties: false } output: { type: "object" } }