action combell_configure_mailbox_auto_forward { label: "Configure auto-forward for mailbox" provider: combell method: PUT path: "/mailboxes/{mailboxName}/autoforward" encoding: json input: { type: "object" properties: { copy_to_myself: { type: "boolean" description: "Copy to myself" } email_addresses: { type: "array" description: "E-mail addresses to which e-mails are forwarded" items: { type: "string" } } enabled: { type: "boolean" description: "Enabled" } mailboxName: { type: "string" } mailbox_name: { type: "string" description: "Mailbox name." } } required: ["mailboxName", "mailbox_name"] additionalProperties: false } output: { type: "object" additionalProperties: true } }