Recent Posts in My Followed Categories
Switch the "Categories" drop down to see either Recent posts in All categories or only posts in the categories you Follow.
-
We are utilizing eDOCS/API vers 16.7.2 When add documents via Rest API, file created as zero bytes
I have a java program that is utilizing the eDOCS API vers 16.7.2, when uploading a file via Swagger it works fine and the document is created successfully, it is unlocked (no red mark on thumbnail) and its not zero bytes. However, when I attempt to add a document via my java class, the document is created, however the…
-
Shared story can't be reused in more texts
We're encountering an error stating 'Shared story can't be reused in more texts' while generating the document format output. Could you provide any insights?
-
eDOCS REST API - token timeout
How can I refresh the token timeout?
-
Using OTDS Impersonation REST API
Hi I am developing a solution where I need to Impersonate users in eDOCS. eDOCS is set up as a Resource in OTDS. I tried the API call "/authentication/ticketforuser" and I got a ticket for a specific user. When I try to use that ticket as "X-DM-DTS" in the header when calling eDOCS REST API I…
-
How do you call the “eDOCS DM Document” from 64-bit MS Access application?
I am an application manager with the Canadain Armed Forces. I have updated the MS Access application from 32-bit to 64-bit. In the 32-bit version I used “ SendKeys "e~" “ to open the Recently Edited Documents folder. However, under 64-bit it opens the MS Access insert object form and the user needs to select “eDOCS DM…
-
eDocs - Rest API - Lookups
What Am I supposed to set in the key value and where I can find it using the api? Thanks.
-
InfoCenter Customization.
We are seeking to use the IC customization platform to provide a required field based on criteria. The two areas we’ve attempted specifically. Presenting a Custom Form Using the Events elements to alter a form With the InfoCenter Customizations platform, should it possible to make a profile form field…
-
InfoCenter Sample app
OpenText InfoCenter InfoCenter Developer enables you to customize and build integrations for InfoCenter. A developer can create customizations that allows users to interact with custom menus, forms and develop custom UI within InfoCenter. As a developer, you will develop with InfoCenter code to create customizations that…
-
eDocs Search Rest API does not return version number
It returns something like this, how am I supposed to know which version it is? "APP_ID": "MS WORD", "ITEM_TYPE": "D", "DOCNAME": "NVCA_Model_Legal-Opinion", "DOCNUM": "12", "LAST_EDIT_DATE": "2022-02-25 04:34:19 UTC", "DOCS_LIBRARY_NAME": "EDOCS_DM", "AUTHOR_ID": "Author User", "STATUS": "0", "SEC_REASON_LINK": "1",…
-
InfoCenter desktop client customization
Hi All, We have client who uses eDOCS InfoCenter desktop client heavily for their document and record management across organization. we have received few customization request from the client where we want to add some new features/modules and integrate new functionality inside InfoCenter desktop client. We are aware that…
-
Impersonate user eDocs REST API
Is there a way to impersonate a user using the eDocs REST API? I would like to create an app that could display a user's recent edits, but cannot find a way to connect and retrieve a DST for an impersonated user, or to pass a different username into a /folders/recentedits call. Is there a way to do this?
-
eDocs - Rest API - Update a document
Hi, I need to update the contents of a document, checking the document`s endpoints of the Rest API: https://developer.opentext.com/apis/9ca24bb2-a89a-446a-96dc-3138b8a5622f/eDOCS%20REST%20API#tag/documents I could not find a way to do it. I known it is possible to do with the DM COM API as follows: Is there a way to do it…
-
eDOCS REST API
This discussion was created from comments split from: OpenText AppWorks Developer website update!.
-
eDocs - Edit a document from a web application
Hi, I have a form where the user can browse his documents, is there a way to edit a document from the browser? From the perspective that the user will have the eDocs plugin installed in his machine can I launch the plugin using a protocol with the document`s data? I known OpenCenter has a way of doing it, maybe I can do…
-
eDocs - Rest API - "Lookup" questions
Hi, 1 - In the following endpoint I known that the profile parameter is the name of the form but what is the key parameter and where I can look for it? 2 - Is there how to known the total entries of a lookup table? 3 - How can I use the filter query parameter to seach for more than one field with an or clause? For example…
-
Check-in with minor version sub version is not working
Method : Put Url : http://10.234.82.164:8000/edocsapi/v1.0/documents/2176/versions/2455?library=EDOCSPPDEV Body: { "DOCNAME": "PASSPORT221_23_iNSTALL.docx", "AUTHOR_ID": "arul", "AUTHOR":"arul", "TYPIST_ID": "arul", "APP_ID": "MS Word", "FORM": "1839", "_restapi": { "form_name": "DEF_PROF" } } Above Rest API is not working…
-
eDocs Rest API for delete reference is not working
I am trying to delete the reference by using below url, http://10.234.81.245:8000/edocsapi/v1.0/documents/8/references?library=ARDEMO but not working getting below things in the logs, 2021-07-21 10:22:27,145 [ 10.141.40.206][SYSTEM][12080]->[HTTP] OPTIONS /edocsapi/v1.0/documents/8/references?library=ARDEMO 2021-07-21…
-
eDocs - Rest API - Searches evaluation with "or" clause in criteria
Hi, I am using the searches/evaluation endpoint as below: It is working but now I would like to search using an or clause, something like: Is it possible and what is the correct schema to do it? The mobile version of the app has a unique input field and I want to either search for title or the number of the document. Thanks
-
eDocs - Rest API - Checkout doubts
Hi, Checking the /documents/{id}/versions endpoint I noticed that it returns a list of versions with a STATUS key, I known that we can LOCK the document not necessarily a specific version, so I wonder what is the meaning of STATUS for each version returned? How can I discover to which user is the document checked out when…
-
eDocs - Rest API - Get the DOCNUM of a created document
Hi, I am uploading a document using the endpoint: POST /documents It is working as follows: But the response does not give me the new document`s DOCNUM. I need it to reference the document to a folder. Is there a way to indicate the properties that I want it to return? Thanks.