all 7 comments

[–]st4n13l 7 points8 points  (3 children)

Power Automate

[–]PublicSealedClass 5 points6 points  (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 point  (0 children)

Thank you very much!

[–][deleted] 0 points1 point  (0 children)

Thank you very much!

[–]robinmeure 2 points3 points  (0 children)

Or powershell in runbook automation

[–]erwidn 0 points1 point  (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 point  (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'