Hello everyone.i want to change the title information of a folder in alfresco using rest api.But I could not find it in the alfresco rest document.Do you have any information on this?
https://api-explorer.alfresco.com/api-explorer/#!/nodes/updateNode
PUT /nodes/{nodeId}
{
"properties": { "cm:title":"Folder title" }}
I tried it. But the file header did not change.this service is return 200, but the file header does not change.
Interesting. It worked for me. Is "file header" the same as "folder title" in your original post?
I added the parameter "accessStatus": "ALLOWED" while creating the file.The problem has improved.I can update the title of the file
You can write a behaviour(policy) and on an update/create you can set the Title.
https://api-explorer.alfresco.com/api-explorer/#!/nodes/updateNode
PUT /nodes/{nodeId}
{
"properties":
{
"cm:title":"Folder title"
}
}