action cloudflare_access_policy_tests_get_an_update { label: "Get the current status of a given Access policy test" description: "Fetches the current status of a given Access policy test." provider: cloudflare method: GET path: "/accounts/{account_id}/access/policy-tests/{policy_test_id}" encoding: json input: { type: "object" properties: { account_id: { type: "string" description: "Identifier." } policy_test_id: { type: "string" description: "The UUID of the policy test." } } required: ["account_id", "policy_test_id"] additionalProperties: false } output: { type: "object" } }