-
OT Email Rest API
Hi, We are looking to find a way to upload email using Rest API. I can upload email as a standard document type (144) but that does not help to update other email metadata. We are using the CS 16.2 version. Can any one help us to provide more information OT email Rest API usage ?
-
How to debug running Java functions in CSIDE
I am running Eclipse, CSIDE with CS 16.2. Does anyone know how to have Eclipse load the javavm so the calls to run java functions work? In the past, you can tell Builder by adding the -loadjavavm to the application start definition. What do you do in Eclipse?
-
Looking for CLI/Script for deploying apps and services in Appworks Gateway.
Hello, Is there any CLI tool or public APIs to deploy apps and services in Gateway. Thanks Ashraf
-
Create/update document with categories in a single request
Greetings, I am new to REST API. I reviewed the API and I wonder if there is any resource that allows me to create a new document in ECM, or if the document already exists, just create a new version in the same request. Also, the request would add a collection of categories to the new/versioned document. Do you know if the…
-
REST Request to get Category info
Hi, I've looked through the various API's that have to do with category attributes, and I can't find one, where you enter the category ID and you get back just the category info, not actual values. Why would I need this? I'm building a Java API wrapper around REST that mimics what I can do today in Web Services, and one…
-
Missing Property(mime_type) from Property Filter. Content Server API v2.
When you make a call like api/v2/nodes/{{NodeID}}/nodes?fields=properties the response looks like this. results: [ { data: { properties: { container: false, container_size: 0, create_date: 2017-08-18T09:28:24, create_user_id: 1000, description: '', description_multilingual: { en_US: '' }, external_create_date: null,…
-
How to use OTDS 16 RESTful API?
hi, anyone can give me a basic idea how to use the OTDS RESTful API. Such as how to start, what the URL will be? I have experience of using RESTful API on content server, but no experience on OTDS RESTful API. Thank you Feng
-
How to assign group permission on Content Server folder with RESTful API
hi, I didn't find relative function to assign a group and set permission for a content server folder by calling CS16 RESTful API. Does anyone know how to do that? Or current version of CS Restful API does not support that function, and I have to use CWS? Thank you. Feng
-
Rest API Content Server v1 (2014-06) - Create User
I can create a group fine using this Jquery POST; livelinkURL/otcs/cs.exe/api/v1/members/ var form = new FormData(); form.append("type", "1"); form.append("name", "TestGroup2"); form.append("group_id", "31924"); When i change the Type to "0" to denote a user i get "Bad Request" for the response.