-
why I get a 500 error on a request for a OTCSticket - CS16.2
I use postman to send a POST request for OTCSticket http:// .../api/v1/auth?username=yyyyy&password=xxxxxx but I get an http 500 error with the response ... { "error": "Argument \"username\" is required." } the GET is working fine.
-
New CSNode Browse action returns zero records
Orphan CSNODE:Root:ObjectsWithPrototypes:Objects:Nodes override List actions = { 'Browse', 'Create', 'Delete', 'Update', 'Copy', 'Move', 'issue' } override Boolean enabled = TRUE override Integer type = 15000 override String type_name = 'customnode' override Boolean container = TRUE override List child_types =…
-
Need a sample Request Payload for "Adding an additional permission to the node"
Hi, I am trying to add additional permission to the node using the following api: POST api/v2/nodes/{id}/permissions/custom I tried with all possible ways, it's not working. I keep getting the following error: "One or more parameters are invalid" Can anybody send some working Request Payload, please? Thanks,
-
Content Server REST API - search entire folder path in one call
Hi, I am brand new at using REST and working with Content Server (16.2.4 in this case ). I am tasked with locating, then downloading, a specific file. That file might be in a folder structure similar to this "folder 1/folder2/folder 3/tgtFile". I have been able to find tgtFile using ARC with a body of "OTName:tgtFile AND…
-
I need direction please
I'd like to create a word 2016 add-in using the new visual studio add-in framework (javascript etc.). One of my primary requirements is that i need to grab the eDocs library, document id and version from the eDocs client (16.3.0181). Can any anyone please point me in the best direction? Thank you!
-
How to add Records from Webservices to Database in Opentext
Hi, Just recently completed Opentext certification from Mindmajix. As of Fresher to the Opentext, I am unable to find how to add Records from Webservice to Database in Opentext.. I have OpenText ECM with Documents, I need to add 1 more Column to an existing table of OpenText Database. I have another database in DB2 with…
-
Content Server - Override WebNode action with a Javascript call
Hi, Is it possible to change the override we currently have that allows us to change the action performed on a document to go to a URL that invokes our viewer. Would it be possible to the same behaviour but call a javascript function with some details passed in? Thanks Nick
-
HTTP error 403 while trying to update user attributes via OTDS RESTful API
There is a userID dedicated to automated changes in OTDS via its REST API. The userID can update user attributes through the web interface of OTDS, but in case the very same action in initiated through REST API the API answers with HTTP code 403 - Access is denied to authenticated user. Only users with full system…
-
Content Server - Get Content Stream with REST API fails with "Stream has been closed".
We are getting Status 200 message while trying to retrieve the document content but when we try to read the stream we are receiving Stream has been closed error message but the same works fine when we get the content response type as string. Able to get the content if we use the below code: ResponseEntity contentStream =…
-
How to move a document (a node) from the folder A to the folder B in a content server
There is a Content server is installed in xECM with SAP solution, and the web application server is Apache tomcat. We would like to move a document from the folder A to the folder B. Check REST 16.2 API. Try to use "put api/v1/nodes/{id}" or "put api/v2/nodes/{id}" to move a node for document file. Then get the following…