I'm trying to use Graph API to get a list of my Outlook folders, but this command returns a boolean instead of the uptyped variable. FYI, it doesn't not generate an error, but after it runs the varFolders contains a boolean.
Set(varFolders,Office365Outlook.HttpRequest("https://graph.microsoft.com/v1.0/me/mailFolders","GET",""))
This command does work,
Set(varMyProfile,Office365Groups.HttpRequest("https://graph.microsoft.com/v1.0/me/","GET",""))
so I know that calls to the Graph API work, but not for this one, even though it is indicated it should in the Microsoft Documentation.
Any ideas?
Thanks,
Steve