I'm trying to get events from outlook(2013) by using the Python win32com library, I have managed to do this, however I have not been able to get their status (Accepted, tentative, declined). It's important that I find out their status as the my current code gets all events. I read online that there exists an AppointmentItem.ResponseStatus Property, however I haven't managed to make it work using this. Can anyone tell me how I can achieve this for Python?
outlook = win32com.client.Dispatch("Outlook.Application").GetNamespace("MAPI")
inbox = outlook.GetDefaultFolder(9) # "9" refers to the index of a folder - in this case,
# the events/appointments. You can change that number to reference
# any other folder
events = inbox.Items