I am developing an Java app to upload documents in Content Server 16.2 using REST API.
I need add a defined classification to a document (node) via REST API but I'm not found how to do.
For example: This is my REST call:
POST http://<server>/OTCS/cs.exe/api/v2/nodes
And two parameters:
- body
{ "parent_id": "137072", "name": "example.tmp", "type": "144" }
- file: (a MultipartFile)
Is it possible?