action cloudflare_access_policy_tests_get_a_user_page { label: "Get an Access policy test users page" description: "Fetches a single page of user results from an Access policy test." provider: cloudflare method: GET path: "/accounts/{account_id}/access/policy-tests/{policy_test_id}/users" encoding: json input: { type: "object" properties: { account_id: { type: "string" description: "Identifier." } per_page: { type: "integer" } policy_test_id: { type: "string" description: "The UUID of the policy test." } status: { type: "string" enum: ["success", "fail", "error"] } } required: ["account_id", "policy_test_id"] additionalProperties: false } output: { type: "object" } }