cancel
Showing results for 
Search instead for 
Did you mean: 

Creating a child folder within an existing folder

Former Member
0 Kudos

Hi Community,

I am struggling creating an hierarchical folder structure through the JAM OData API.

I created a folder within my group with a call to [POST] /Groups('key')/Folders

What I am now looking for is a method to create a child folder within this folder. I stored the response and saved the JAM-ID of the folder but I cannot identfy an API method that is capable of creating a child folder. I think this is trivial and maybe I am just looking in the wrong place.

Any hint appreciated.

Many thanks,

Anton

PS: A search functionality within the Documentation would be great!

Accepted Solutions (1)

Accepted Solutions (1)

robert_horne
Employee
Employee
0 Kudos

Subfolders are created by POSTing a folder to another folder via the following call: POST: https://SERVER_URL/api/v1/OData/Folders(Id='FOLDER_UUID',FolderType='Folder')/Folders

<entry>

<content>

<properties>

<Name>Folder 1431453286</Name><IsPrivate>false</IsPrivate>

</properties>

</content>

</entry>

Answers (0)