REST API to Create Folder in DAM is not working as documented
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:
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:
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:
And this is a screenshot of the properties of that created folder.
Why doesn't it use the folder title I've configured in the POST request? Am I doing something wrong?

