Member Junction
    Preparing search index...

    The Microsoft Graph POST /users create-mailbox payload (the subset we construct).

    interface GraphCreateMailboxPayload {
        DisplayName: string;
        MailNickname: string;
        TenantId?: string;
        UsageLocation?: string;
        UserPrincipalName: string;
    }
    Index

    Properties

    DisplayName: string

    The display name shown in the directory + on calendar invites.

    MailNickname: string

    The mailbox local part (mailNickname) derived from the address.

    TenantId?: string

    The Azure tenant id the mailbox is created in, when supplied via request Configuration.TenantId.

    UsageLocation?: string

    The directory OU/usage-location hint, when supplied via request Configuration.UsageLocation.

    UserPrincipalName: string

    The mailbox UPN/address to create (user.userPrincipalName + mailNickname).