action cloudflare_pages_domains_get_domains { label: "Get domains" description: "Fetch a list of all domains associated with a Pages project." provider: cloudflare method: GET path: "/accounts/{account_id}/pages/projects/{project_name}/domains" encoding: json input: { type: "object" properties: { account_id: { type: "string" description: "Identifier." } project_name: { type: "string" description: "Name of the project." } } required: ["account_id", "project_name"] additionalProperties: false } output: { type: "object" } }