action combell_create_alias { label: "Create a new alias" provider: combell method: POST path: "/mailzones/{domainName}/aliases" encoding: json input: { type: "object" properties: { destinations: { type: "array" description: "The alias destination e-mail addresses" items: { type: "string" } } domainName: { type: "string" } domain_name: { type: "string" description: "Mail zone domain name." } email_address: { type: "string" description: "The alias e-mail" } } required: ["domainName", "domain_name"] additionalProperties: false } output: { type: "object" additionalProperties: true } }