Update "Notes" on Mailbox in Exchange online

Hi All,

We have connected Microsoft exchange online using connector.

We can create sharedmailbox but I don't see "Notes" attribute for update.

We want to update "Notes" under contact information but unable to do using Exchange online connector.

I try Graph API also but did not work.

You can see in below screen which attribute I want to update from OIM

Exchange_Online.png

Does anyone already did this,and how?

OIM version : 9.0

Thank you in advance.

Kind Regards,

Dnyandev Garad.

Parents
  • $secpasswd = ConvertTo-SecureString 'xxxxxxx' -AsPlainText -Force
    $o365cred = New-Object System.Management.Automation.PSCredential ('xxxxxxx', $secpasswd)
    Connect-ExchangeOnline -Credential $o365cred
    Set-User -Identity 'xxxxxx@abcdgh.com' -Notes 'test notes' -Confirm:$false
    Disconnect-ExchangeOnline -Confirm:$false

    I managed to do this using PowerShell script.

Reply
  • $secpasswd = ConvertTo-SecureString 'xxxxxxx' -AsPlainText -Force
    $o365cred = New-Object System.Management.Automation.PSCredential ('xxxxxxx', $secpasswd)
    Connect-ExchangeOnline -Credential $o365cred
    Set-User -Identity 'xxxxxx@abcdgh.com' -Notes 'test notes' -Confirm:$false
    Disconnect-ExchangeOnline -Confirm:$false

    I managed to do this using PowerShell script.

Children
No Data