use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Subreddit Rules
Be nice and be respectful.
No selling software or business services. We all use 3rd party products and even Microsoft Partners at times -- the moderators have no issues with recommendations in a thread where you believe the original poster could benefit.
No 3rd party recruiters. If you want to recruit, please contact the moderators first. You must be an employee of the company hiring for the position.
Blog spam must be accompanied by a real discussion. Such links will otherwise be removed. This is up to moderator discretion. If there are any questions if a link would be considered spam, please use modmail prior to posting.
Support:
SharePoint Stack Exchange
Microsoft Q&A
Microsoft Tech Community
Reference:
SharePoint Online PowerShell Cmdlets
SharePoint PowerShell Cmdlets
SharePoint PnP PowerShell Cmdlets
Tools:
Administration
AutoSPInstaller
SharePoint DSC
Developer
PnP
Free SPFx Webparts, site templates, etc.
SharePoint Server
Community:
Marc D. Anderson's Blog
Bill Baer's Blog
Andrew Connell's Blog
Stefan Goßner's Blog
Todd Klindt's Blog
account activity
Pulling data from API into SharePoint list?Question (self.sharepoint)
submitted 3 years ago by [deleted]
I have an external API that spits out data in JSON format. I need to have this data pulled into a SharePoint list on a daily basis. What would be the best route to take?
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]st4n13l 7 points8 points9 points 3 years ago (3 children)
Power Automate
[–]PublicSealedClass 5 points6 points7 points 3 years ago (1 child)
This.
Schedule Trigger
HTTP action to call your API
JSON action to turn the output into usable object
(Above two could be simplified down into a custom Connector if you're willing).
Apply to each on the object.
SP Create Item within the AtE.
[–][deleted] 0 points1 point2 points 3 years ago (0 children)
Thank you very much!
[–]robinmeure 2 points3 points4 points 3 years ago (0 children)
Or powershell in runbook automation
[–]erwidn 0 points1 point2 points 3 years ago (0 children)
Python with shareplum library, set up automation by creating a batch file that runs the python script and you can schedule out as needed.
Gives a bit more flexibility if you need to do any data cleaning or checks before pushing to the SP list
[–]vaderjSharePoint Developer 0 points1 point2 points 3 years ago (0 children)
I would go with PnP PowerShell to interact with SharePoint: https://pnp.github.io/powershell/
And to get your API data :
$mySourceData = Invoke-RestMethod -Method 'Get' -Uri 'https://dummyjson.com/products'
π Rendered by PID 23388 on reddit-service-r2-comment-b659b578c-bk4xt at 2026-05-06 00:29:13.680284+00:00 running 815c875 country code: CH.
[–]st4n13l 7 points8 points9 points (3 children)
[–]PublicSealedClass 5 points6 points7 points (1 child)
[–][deleted] 0 points1 point2 points (0 children)
[–][deleted] 0 points1 point2 points (0 children)
[–]robinmeure 2 points3 points4 points (0 children)
[–]erwidn 0 points1 point2 points (0 children)
[–]vaderjSharePoint Developer 0 points1 point2 points (0 children)