I'm currently on a project that involves OpenText Content Server 10.5 SP1 Update 2015-03.
I'm trying to find out if is possible to get all categories from the System Category Volume with one call using Java SOAP web services or REST.
On the web services side I found a couple of methods exposed by the DocumentManagement WSDL GetCategoryDefinition
and GetCategoryDefinitions
which require categoryIDs as argument.
On the REST side I managed to obtain access to categories but after a quite long trip:
- call to
otcs/cs.exe?func=search.GetCategoryVolume
gives as a response an URL for the subsequent call - call to
otcs/cs.exe?func=ll&ObjID=2005&objAction=XMLExport&scope=1
gives the id of the system category volume along with category IDs - call to
otcs/cs.exe?func=ll&ObjID=21361&objAction=XMLExport&scope=1
gives the required info about the category.
I would like to have a single call returning all information about categories I need.
Is it possible to achieve that?