action combell_get_mailbox { label: "Get a specific mailbox" provider: combell method: GET path: "/mailboxes/{mailboxName}" encoding: json input: { type: "object" properties: { mailboxName: { type: "string" } mailbox_name: { type: "string" description: "Mailbox name." } } required: ["mailboxName", "mailbox_name"] additionalProperties: false } output: { type: "object" properties: { actual_size: { type: "integer" format: "int32" description: "Used size in MB" } auto_forward: { 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" } } additionalProperties: false } auto_reply: { type: "object" properties: { enabled: { type: "boolean" description: "Enabled" } message: { type: "string" description: "Message" } subject: { type: "string" description: "Subject" } } additionalProperties: false } login: { type: "string" description: "Login to connect with the mailbox" } max_size: { type: "integer" format: "int32" description: "Maximum size in MB" } name: { type: "string" } } additionalProperties: false } }