How to get UCM ID from document ID using Generic SOAP WSDL

How to get UCM ID from document ID using Generic SOAP WSDL

We can get Document ID once we upload the files to UCM using Erpintegrations REST API as shown below:

A screenshot of a computer

AI-generated content may be incorrect.

We can get UCM id from this document ID using generic SOAP WSDL with the details below:

WSDL:

https://xxxxx.fa.xxxx.oraclecloud.com/idcws/GenericSoapPort?WSDL

Method:

GenericSoapOperation

Request:

  1. <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ucm="http://www.oracle.com/UCM">
  2. <soapenv:Header/>
  3. <soapenv:Body>
  4. <ucm:GenericRequest webKey="cs">
  5. <ucm:Service IdcService="GET_FILE">
  6. <ucm:Document>
  7. <ucm:Field name="dID">2700074</ucm:Field>
  8. </ucm:Document>
  9. </ucm:Service>
  10. </ucm:GenericRequest>
  11. </soapenv:Body>
  12. </soapenv:Envelope>

Response:

A screenshot of a computer

AI-generated content may be incorrect.

Leave a Reply

Your email address will not be published. Required fields are marked *

Back To Top