mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-31 17:38:28 +00:00
* use latest ACS com * add workaround for REPO-4772 * due to the workaround done for REPO-4772, files now have an initial version set to MAJOR 1.0 * add workaround for REPO-4772 for bulk create files * Get ACS log if something goes wrong * wait for the dialog to close only in specific cases * Import Custom Model into ACS. Update proxy to work with Share.
21 lines
441 B
Markdown
21 lines
441 B
Markdown
# Custom Node creation instruction
|
|
|
|
Use the v1 POST node/{nodeId}/children for creating the custom node with a payload like:
|
|
|
|
```
|
|
{
|
|
"name":"acme document2.txt",
|
|
"nodeType":"acme:document",
|
|
"properties": {
|
|
"acme:documentId": "DOC001",
|
|
"acme:securityClassification":"Public",
|
|
"cm:title":"My text"
|
|
},
|
|
"aspectNames": [
|
|
"acme:securityClassified"
|
|
]
|
|
}
|
|
```
|
|
|
|
Tip: You could use the api explorer with <host-url>/api-explorer/
|