action combell_add_ssh_key { label: "Add a SSH key" provider: combell method: POST path: "/linuxhostings/{domainName}/ssh/keys" encoding: json input: { type: "object" properties: { domainName: { type: "string" } domain_name: { type: "string" description: "Linux hosting domain name." } public_key: { type: "string" description: "Public key" } } required: ["domainName", "domain_name"] additionalProperties: false } output: { type: "object" additionalProperties: true } }