Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
praveenkumar_s
Creator II
Creator II

Extracting sharepoint

Please let me know..how to extract list data from sharepoint using powershell..i hope that might genius help me ...

1 Reply
Not applicable

Hi Praveen,

Your question is quite compact so I might be missing your point. For now I assume you want to get data out of Sharepoint Online. For an on-premise Sharepoint setup I have no answer.

To get data (list items) out of Sharepoint Online (part of Office 365) you can use the Microsoft Graph API. It's documented at Microsoft Graph - Documentation - Overview. The part you need is in beta currently, see Microsoft Graph - Documentation - SharePoint. I have to note this: it requires moderate to advanced Powershell and developer skills to do this. You'll need to know:

  1. How to register an application in Azure AD with the right scope (scope = Sites.Read.All)
  2. How to use OAUTH2 to get an authentication code and then an access token
  3. How to list your sites and lists to get the appropriate listID. The listID used by the Graph API is not the same one as you see in Sharepoint Online...

With regards,

Egbert