action cloudflare_access_jit_request_logs_get { label: "Get an Access JIT request log" description: "Gets an account-scoped Access JIT request summary and its lifecycle events in chronological order." provider: cloudflare method: GET path: "/accounts/{account_id}/access/logs/jit_requests/{knock_request_id}" encoding: json input: { type: "object" properties: { account_id: { type: "string" description: "Identifier." } knock_request_id: { type: "string" format: "uuid" } } required: ["account_id", "knock_request_id"] additionalProperties: false } output: { type: "object" } }