I am trying microsft's EWS api service to handle the meeting requests. But Now I want to update the times for a previous meeting created in EWS. I cant really find a way to do that.
Appointment meeting = Appointment.Bind(service, meetingId, new PropertySet(AppointmentSchema.Subject,
AppointmentSchema.Location,
AppointmentSchema.RequiredAttendees,
AppointmentSchema.Resources));
The above code is picked up from https://msdn.microsoft.com/en-us/library/office/dn495610(v=exchg.150).aspx
I have no idea what appointmentId means there. How do I get that.