Skip to content Skip to sidebar Skip to footer

Rest Api For O365 Eo Recoverable Items Folder

I want to fetch events from Recoverable items folder inside Deleted Items. Do we have support with rest API to access these mails/calendars/contacts inside recoverable folder? I co

Solution 1:

You can use the WellKnownFolder enumerations for the RecoverableItems folders so make a request like this to list all the folders

https://graph.microsoft.com/v1.0/users('user@domain.com')/MailFolders/recoverableitemsroot/childfolders/?$Top=1000 

or for items in the folders

GET https://graph.microsoft.com/v1.0/users('user@domain.com')/MailFolders/recoverableitemsdeletions/messages

Post a Comment for "Rest Api For O365 Eo Recoverable Items Folder"