Expand my Community achievements bar.

Who Me Too'd this topic

Avatar

Level 2

I'm communicating with Adobe Experience Manager, Version 6.5.6.0. I'm trying to create a folder using the HTTP REST API.

 

The documentation here:

https://experienceleague.adobe.com/docs/experience-manager-65/assets/extending/mac-api-assets.html?l...

Mentions:

  • POST /api/assets/myFolder -H"Content-Type: application/json" -d '{"class":"assetFolder","properties":{"title":"My Folder"}}'
  • POST /api/assets/* -F"name=myfolder" -F"title=My Folder"

However, when I create a folder like this:
postman test.png

Then I get a created answer, but it only uses the name I've provided, not the title. This is a screenshot of the created folder:
created folder.png

 

And this is a screenshot of the properties of that created folder.folder properties.png

 

Why doesn't it use the folder title I've configured in the POST request? Am I doing something wrong?

Who Me Too'd this topic