action cloudflare_access_custom_pages_get_a_custom_page { label: "Get a custom page" description: "Fetches a custom page and also returns its HTML." provider: cloudflare method: GET path: "/accounts/{account_id}/access/custom_pages/{custom_page_id}" encoding: json input: { type: "object" properties: { account_id: { type: "string" description: "Identifier." } custom_page_id: { type: "string" description: "UUID." } } required: ["account_id", "custom_page_id"] additionalProperties: false } output: { type: "object" } }