-
CS 16 - REST API - Error 500 when trying to create a document
Hi Guys, We are trying to use the REST API on Content Server 16 to create documents. When running the Postman app on the server directly we can sucessfully authenticate, create folders and create documents. When running the Postman app on the client we can successfully authenticate and create folders. When we try to create…
-
REST API: calling saved search query and passing parameter to search query
I saw in another post that i can call a saved query by calling the saved query id 'api/v1/search?templateid=160598' this works fine but is there a way to pass a parameter to one of the attributes in the saved search query. Let's say if I had an attribute named ItemID, can I pass the ID as part of the query? Does anyone…
-
CS 16 - set null in multi-value category property
Hi, I am trying to set nulls in a multivalue Integer Field usign api/v1/nodes/{node_id}/categories/{cat_id}/. I am sending 75995_51: 75995_51: 75995_51:2 75995_51: 75995_51:7 and getting back ... "75995_51": [ null, 2, 7 ],... Two values got lost. Any ideas how to make it work? Regards, Cristian
-
how to set action for option showing in context menu
how to set action for option showing in context menu... when i right click context menu appears but when i click on any option like properties , checkout etc nothing happens. <dmfx:actionmultiselectcheckbox value='false' cssclass='doclistcheckbox'> <dmf:argument name='objectId' datafield='r_object_id'/> <dmf:argument…
-
Issues with /api/v1/doctemplates/{id}/instances REST API Call - CS 10.5
Hello, I'm working on a requirement to create Case Workspaces based on a template (without linking to SAP object) using CS Web Services. Upon deep diving into it, I found there are two ways to acheive this: * SOAP based API (per ECMLink SDK and API documentation - 10.5 SP1) * REST API Support - Binder and Case Creation…
-
Add a category to node using REST api
I can read categories from a node with GET http://MY_SERVER_IP/OTCS/cs.exe/api/v1/nodes/NODE_ID/categories but I'm not able to add a new one to it. Is it possible? Can I sent a POST to same URL? How should be the body of that request?