action clickmeter_get_domains_id { label: "Get a domain" provider: clickmeter method: GET path: "/domains/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int64" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { custom404: { type: "string" } customHomepage: { type: "string" } id: { type: "integer" format: "int64" } name: { type: "string" } type: { type: "string" enum: ["System", "Go", "Dedicated", "Personal"] } } } }