문제

I want to create a folder inside "Communications" document library in below site using rest api.

https://contoso.sharepoint.com/sites/SP

Can you please assist on how to do that?

도움이 되었습니까?

해결책

You need to use the Folders endpoint something like below:

_spPageContextInfo.siteAbsoluteUrl + "/_api/Web/Folders/add('Communications/NewFolderName')"

Note: You need to pass the ServerRelativeUrl inside the add method.

Official documentation: Working with folders by using REST.

Similar question: Creating Folder using REST and JavaScript

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 sharepoint.stackexchange
scroll top