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?
How to Get ToDo Task List sharings and Task Groups from Exchange with EWS?
101 Views Asked by Rafa Ayadi At
1
There are 1 best solutions below
Related Questions in MICROSOFT-GRAPH-API
- Teams tab application returns SSO error in mobile Outlook
- Implementing Incremental consent when using both application and delegated permissions
- Issue uploading files in spring boot java to onedrive using API
- Validating Access Token in ASP.NET Core Web API project
- MS Graph API Error 504: Timeout when send large data (Java Sdk 5.80.0)
- Why does the API getTeamsTeamActivityDetail has missing data?
- .NET 8 DownstreamAPI not authenticating
- Inquiry Regarding Feasibility of Fetching User login hours(In numbers) Status from Teams for SPFx Integration
- MS Graph .net SDK cannot expand calendar event SingleValueExtendedProperties
- How to disable cached responses from node fetch? (Microsoft Bookings API)
- Build self service Microsoft Partner Center portal using Graph API ( web app )
- Adding skiptoken to query parameters for graph api v5 requests
- OneDrive download link to a direct link not working, auth requested
- Microsoft Teams, Graph API, send message to channel InsufficientPrivileges MessageWritesBlocked-Thread is not marked for import
- Microsoft graph api to get lists in a sharepoint site not listing all lists
Related Questions in EXCHANGEWEBSERVICES
- Send M365 meeting invitations to selected attendees
- Graph api using search and orderby at sametime
- Create exchange appointment using ews-javascript-api
- Response from Exchange Web Service is invalid XML
- Exchange Audit Log Endpoint Returns 401
- Exception managing personal outlook.com e-mail using EWS (migration to OAuth2 required?)
- BluePrism - Move or upload a mail from one email Inbox to a different one
- EWS Operation Item.Copy fails with 'full_access_as_app' permission
- EWS EmailMessage Move failed
- exchange web services: export item which larger than 2GB got 400 with empty response
- Trying to get EWS account causes perfproc event 2002 and crashes
- Issue converting EntryId to EwsId, it gives ImmutableId
- How to migrate a function UploadItemFts(string folderId, byte[data]) on EWS managed api to Graph function
- BUG? deleting occurrence with ews managed api deletes entire series
- When I use the official ews Java API and demo call interface to retrieve the busy status of other users, I always report error 404
Related Questions in OUTLOOK-RESTAPI
- Building Daemon or Service Apps with Office 365 that doesn't require sign in
- Office 365 Rest API Access to public folders
- Error adding Office 365 Unified API (preview) to Azure AD
- Fetching "cancelled" events through the Office 365 REST API
- Get shared calendar from different user(meeting room)
- How do I attach files which are located on my web server to send email?
- Delete series of recurring events on Outlook Calendar API
- Outlook 365: Keeping specific events in sync with external system
- Outlook JS Add-In + Outlook REST API
- Office 365 default Calendar's ID changes automatically
- Outlook 365 Accessing Calendars in Service Account via REST API
- Create a draft reply message give an error on providing payload
- Add and remove delegates by using Microsoft Graph (Outlook REST API)
- Batch creation in exchange rest call
- Stay logged in when using msal.js
Related Questions in MICROSOFT365
- Office365: Refreshing access token results with "AADSTS9002313" invalid_grant execption
- vba powerpoint for mac creating unwanted blank line
- Paste Special msoClipboardFormatPlainText creates unwanted line break on Mac
- "Authentication unsuccessful", SMTP, basic auth, Microsoft 365 email
- Dynamics 365 Finance & Operations API
- Export all stream videos from stream on sharepoint to csv
- get sharepoint file programatically (I know the url from a web browser)
- Dynamic Distribution Group Creation (PowerShell)
- Employee Availability in Microsoft Form
- What can be the reason behind Microsoft graph API(/v1.0/me) returning NULL in "preferredLanguage" field in the profile object?
- teams chat messages are retained even after deletion through eDiscovery. How can this issue be resolved?
- MS 365 dev subscription won't auto-renew even though I'm actively using it
- Creating a text file by searching a string in Outlook inbox(including group inbox)
- What is the difference between creating user from EntraID and MS365 Protal?
- MS Graph API - there is no users/<userid>/drive/items/<itemid>/children/<childrenid>/permissions endpoint
Related Questions in MICROSOFT-EXCHANGE
- Microsoft outlook Caught exception in remote runspace creation, The WinRM service cannot process the request Redirect location reported
- Outlook does not import location correctly from iCal feed
- Connecting Node js mail listener to IMAP error ("Error: LOGIN failed" when Initializing the Listener)
- Microsoft Exchange Server 2016(Console) error: Server Error in '/ecp' Application
- Take mails of all users in my microsoft exchange Workspace
- How to Get ToDo Task List sharings and Task Groups from Exchange with EWS?
- Debugging com object called from EdgeTransport.exe
- Which O-Auth Flow to choose with .Net Core Server which will send (MS Exchange) mails even when no user is logged in
- Is it possible to view an entire M365 tenant's Exchange data in PowerBI?
- Creating a power automate cloud flow trigger when a Microsoft Exchange email comes
- Java and Microsoft Exchange Connection Dropped by server?
- A way to fetch Microsoft Graph locations with PnPJs
- Microsoft Graph - Unable to fetch Microsoft exchange room capacity
- Multiple Recipients using Microsoft exchange
- oAuth2.0 authentication using EWS throwing 401 Unauthorized
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?

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.