Is it possible to get the permissions on a shared task list with EWS or Graph API? Also, how to get the Task Groups via API?
Asked
Active
Viewed 39 times
1 Answers
0
As of today, it is not possible to get To-do Tasks sharing information and folder groups from any of EWS and Graph APIs.
The fields that are available for sharing on Graph are "isOwner" and "isShared"
todoTaskList resource type - Microsoft Graph v1.0 | Microsoft Learn
if the user is the owner of the given task list, then isOwner: True
.
if the task list is shared with other users, then isShared: True
.

Kotana Sai
- 1,207
- 3
- 9
- 20

Karan Garg
- 1
- 1
-
That's what I thought too. Thanks @Karan. – Rafa Ayadi Jun 08 '23 at 10:30