In this article I’ll elaborate how to create SharePoint List Items with MS Graph API. You might have use cases, which require the automatic list item creations – example: Your customer is providing feedback and you want to process it in SharePoint to integrate it to other tools like PowerAutomate. In my current engagement, I…
SharePoint List items do represent a row of structured data in our SharePoint. Besides creating them manually, you have the opportunity to create them programmatically. In this article I want to show you how you can create SharePoint list items using Graph API with PowerShell.
In this article I am explaining how you can get SharePoint List items with Graph API. I took PowerShell to get the items, but you could also get all the items with a web request in the tool of your choice e.g. Postman.
Getting all values of all items If you want to retrieve all fieldvalues of an item, you can use following steps. I am getting the opportunities of the sales department Connect to SharePoint Online with PNP. If you don’t know how to, check the post. I am connecting with the sales site Connect-PnPOnline -Url “https://devmodernworkplace.sharepoint.com/sites/Sales”…