I am using EWS Java API with Exchange Online (Office 365) and I would like to edit contact notes.
The problem I encounter is that there is no setter for a contact notes in this API. The contract is to bind a contact from its unique ID, set its properties then update it. However, There is no setNotes()
on a contact. (The managed API does not provide setter either).
Can someone help me there?
I found the solution. I had to use getBody()
and setBody()
methods.