I have Full Access for Room mailbox ("[email protected]"). So i can retrieve all meetings scheduled in Room. In retrieve appointments I'm getting Subject as organizer Name instead of appointment subject.
For Example: While Creating Appointment given data
Meeting Subject: Test1
Meeting Organizer: [email protected]
Attendees: [email protected]
Location: [email protected]
While fetching data from Room getting subject as "Suneel" instead of "Test1"
Can anyone help me on this?
CalendarView cView1 = new CalendarView(fromDate, toDate);
FolderId foldertest = new FolderId(WellKnownFolderName.Calendar, new Mailbox("[email protected]"));
FindItemsResults<Appointment> findResults =
service.FindAppointments(foldertest, cView1);
findResults.Items.ToList().ForEach(d =>
{
Appointment appointment = Appointment.Bind(service, new
ItemId(d.Id.UniqueId));
roomAppointments.Add(appointment);
});