ts-mailcow-api
    Preparing search index...

    Interface MailboxCustomAttributeEditRequest

    Mailbox custom attribute edit payload. attribute and value are parallel arrays -- attribute[i] is combined with value[i] into a single attribute map server-side (functions.mailbox.inc.php, case mailbox_custom_attribute).

    interface MailboxCustomAttributeEditRequest {
        attr: { attribute: string[]; value: string[] };
        items: string | string[];
    }
    Index
    attr: { attribute: string[]; value: string[] }

    The custom attributes to set.

    Type Declaration

    • attribute: string[]

      Attribute keys, parallel to value.

    • value: string[]

      Attribute values, parallel to attribute.

    items: string | string[]

    Mailboxes to edit.