What are the ways to pull the data from SharePoint list?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-12-2023 08:30 AM
From my research, I got that there are two ways
1. Outbound Rest message
2. Integration hub (Microsoft SharePoint Online spoke).
Are there any other ways? Guide me to the best approach along with the implementation steps.
- Labels:
-
Architect
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2023 05:21 AM
SharePoint provides a Representational State Transfer (REST) API that allows you to interact with SharePoint resources, including lists. You can use HTTP requests (GET, POST, PUT, DELETE) to query and retrieve data from SharePoint lists. The REST API returns data in JSON format, which can be easily processed by various programming languages and tools. If you are working with SharePoint Online, you can use the SharePoint Online Management Shell, which is a PowerShell module specifically designed to manage SharePoint Online sites and lists. With PowerShell, you can write scripts to pull data from SharePoint lists using SharePoint Online cmdlets......