action cloudflare_worker_subdomain_get_subdomain { label: "Get Subdomain" description: "Returns a Workers subdomain for an account." provider: cloudflare method: GET path: "/accounts/{account_id}/workers/subdomain" encoding: json input: { type: "object" properties: { account_id: { type: "string" description: "Identifier." } } required: ["account_id"] additionalProperties: false } output: { type: "object" } }