action combell_configure_mailbox_auto_reply { label: "Configure auto-reply for mailbox" provider: combell method: PUT path: "/mailboxes/{mailboxName}/autoreply" encoding: json input: { type: "object" properties: { enabled: { type: "boolean" description: "Enabled" } mailboxName: { type: "string" } mailbox_name: { type: "string" description: "Mailbox name." } message: { type: "string" description: "Message" } subject: { type: "string" description: "Subject" } } required: ["mailboxName", "mailbox_name"] additionalProperties: false } output: { type: "object" additionalProperties: true } }