I am trying to list the Outlook Task Folders using Microsoft Graph with POSTMan. Following is the URL I am using:
https://graph.microsoft.com/beta/me/outlook/taskFolders
After adding the Bearer Token in the request header, I am getting the following response Graph:
"code": "NoPermissionsInAccessToken",
"message": "The token contains no permissions, or permissions can not be understood.",
I have already enabled the following permissions:Tasks.ReadWrite
.
What am I missing here?
POST
instead ofGET
request (hint: it should be aPOST
:) ) – Marc LaFleur