I'm new to both StackOverflow and Microsoft Graph.
I'm facing the following problem:
I get an
EventMessage
from a technical mailbox that contains an update of the involved event.I would like to get new values from this event (ie new start dates / new end dates).
Further explanations :
An event is created by the organizer's mailbox with some other users as attendees.
From his webmail, this attendee can update this event - delegate it or update his dates.
It automatically sends an email that I can read from the technical mailbox.
This email contains the event but doesn't contain event's updates proposal.
How I did :
I created an event from a user, with an attendee, using outlook.
The event's attendee updated the event asking for new dates, with the webmail client (using option "propose new time").
It sends a mail to the organizer to notify the changes.
I'm now trying to get changes from the mail message received on the organizer's mailbox (ie : new dates).
To get the eventMail
, I use the following request
/v1.0/users/{user}/messages/{id}?$expand=microsoft.graph.eventMessage/event
It gives me the microsoft.graph.eventMessage/event
object.
I would like to get those updates.