Hi,
I am using the graphClient for java and when calling fetchMessage(id), I am receiving the following error:
error=ErrorModel [errorCode=529, errorMessage=Process InboundEMail Exception. Details: Exception while process message with uuId: {removed_uuid}=, exception: JSONObject[“isDeliveryReceiptRequested”] is not a Boolean…]
So, my code cannot process the email. Can you please help me understand what might be wrong here. Here is basically what my code is doing
GraphMessageInfoCollection messages = eslGraphClient.listMessages();
if (messages != null) {
for (GraphMessageInfo messageInfo : messages) {
// Exception occurs on this fetchMessage call for the email I am processing
MapiMessage message = eslGraphClient.fetchMessage(messageInfo.getItemId())