0

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?

enter image description here

Rafa Ayadi
  • 197
  • 1
  • 17

1 Answers1

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