action combell_change_mailbox_password { label: "Change password for mailbox" provider: combell method: PUT path: "/mailboxes/{mailboxName}/password" encoding: json input: { type: "object" properties: { mailboxName: { type: "string" } mailbox_name: { type: "string" description: "Mailbox name." } password: { type: "string" description: "The password for the database user.
\nPasswords have to adhere to following rules:
" } } required: ["mailboxName", "mailbox_name"] additionalProperties: false } output: { type: "object" additionalProperties: true } }