ts-mailcow-api
    Preparing search index...

    Interface CreateDomainAdminRequest

    Request payload to create a new Domain Admin.

    interface CreateDomainAdminRequest {
        active: number;
        domains: string;
        password: string;
        password2: string;
        username: string;
    }
    Index

    Properties

    active: number

    Indicates if the domain admin account is active (1 for active, 0 for disabled).

    domains: string

    The domains that the user will have admin control over.

    password: string

    The password for the domain admin user.

    password2: string

    Confirmation for the domain admin user password.

    username: string

    The username for the admin user.