I work with SharePoint Online drives(document libraries) with Microsoft Graph API (/drives
call). With this API I can download/upload files but cannot work with permissions.
That's not a problem - I can do it with SharePoint Online REST API (with calls _api/web/GetListByTitle('Title')/hasuniqueroleassignments
).
The main problem here is matching drive from MS Graph API and a corresponding list from SharePoint REST API. For now I match by title but I have several examples, when name
field in MS Graph API is equal to "OneDrive", but title in List
entity is Shared Pictures
.
My question is: is there any way to match more precisely entities from Graph API and SharePoint REST API?
Thank you.