13,743 questions
Adding folders to Sharepoint Site
Martin Dodd
10
Reputation points
Steps taken to reproduce error:
- Get the site id:
https://graph.microsoft.com/v1.0/sites/ausreman.sharepoint.com:/sites/<SITENAME>
- Using this site name, we obtain the drive id of interest:
https://graph.microsoft.com/v1.0/sites/{{hostname}}:/sites/<SITENAME>:/drives
- From the site id and drive id we then attempt to add a new folder:
https://graph.microsoft.com/v1.0/sites/{{site-id}}/drives/{{drive-id-po}}/root/children
with the POST body:
{
"name": <FOLDERNAEM>,
"folder": { },
"@microsoft.graph.conflictBehavior": "rename"
}
This all use to work, but as of 24/10/2023 5:49AM (Sydney Time) the above stopped working. Does anybody have any thoughts?
Microsoft Security | Microsoft Graph
Sign in to answer