Im using the exchangelib python module and i am trying to get all meetings linked to a room item. what would i call on the account object to get that?
would i call account.folders[Calendar] or what?
Im using the exchangelib python module and i am trying to get all meetings linked to a room item. what would i call on the account object to get that?
would i call account.folders[Calendar] or what?
Assuming the room actually has an account, and that meetings are booked in the default calendar, just call account.calendar.view(start=..., end=...)
. See https://github.com/ecederstrand/exchangelib#searching
If the calendar of the room contains other appointments than meetings, you'll have to discard the non-meeting items after fetching.