action combell_get_mailboxes { label: "Gets your mailboxes." description: "Currently only supports getting the mailboxes filtered by domain name." provider: combell method: GET path: "/mailboxes" encoding: json input: { type: "object" properties: { domain_name: { type: "string" description: "Obligated domain name for getting mailboxes." } } additionalProperties: false } output: { type: "array" items: { type: "object" properties: { actual_size: { type: "integer" format: "int32" description: "Used size in MB" } max_size: { type: "integer" format: "int32" description: "Maximum size in MB" } name: { type: "string" } } additionalProperties: false } } }