action clickmeter_domains_update { label: "Update a domain" provider: clickmeter method: POST path: "/domains/{id}" encoding: form input: { 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"] } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { id: { type: "integer" format: "int64" } uri: { type: "string" } } } }