You can create and populate a folder in Sharepoint.
Prepare to connect to Microsoft
As part of the integration, you need to allowlist the Next Matter domain and create a service account. See if you’ve completed all the required steps.
I want to share folders or files, create folders, or upload files without any code
You can do it using SharePoint no-code steps. For details, see Connect to Sharepoint no-code
I want to use advanced integration to create a SharePoint list or add a list item
https://graph.microsoft.com/v1.0/sites/HOSTNAME.sharepoint.com:/sites/SITENAME
. The hostname might be, for example, nextmatter.sharepoint.com. You can find the site name in Sharepoint by clicking the Settings gear and clicking Site Information.HOSTNAME, SITE_ID, WEB_ID
. Copy the SITE_ID
number string.Authorization: Microsoft Sharepoint
Method: POST
URL: https://graph.microsoft.com/v1.0/sites/SITE_ID/lists
Headers: Content-Type: application/json
In the Body enter the list values. For example, the body might look like the following.
{
"displayName": "LIST_TITLE", //this is a placeholdder
"columns": [
{
"name": "COLUMN_A",//this is a placeholdder
"text": { }
},
{
"name": "COLUMN_B",//this is a placeholdder
"number": { }
}
],
"list": {
"template": "genericList"
}
}
$.id
.Authorization: Microsoft Sharepoint
Method: POST
URL: https://graph.microsoft.com/v1.0/sites/SITE_ID/lists/LIST_ID/items
Headers: Content-Type: application/json
In the Body enter the list values. For example, the body might look like the following.
{
"fields": {
"Title": "TEST",//this is a placeholdder
"textfield1": "NEW_TEXT",//this is a placeholdder
"numberfield1": 0
}
}
Find the list ID
List=
Was this page helpful?