viewDocumentData
This method allows recovering the data of a document. To use it, it is necessary to follow the standard documented below:
| Java class | |
|---|---|
| Request | web/wwwroot/ws/java/document/ViewDocumentDataRequestType.java |
| Return | web/wwwroot/ws/java/document/ViewDocumentDataResponseType.java |
Request:
| ID # | Required | Description |
|---|---|---|
| IDDOCUMENT | X | Document ID #. |
| IDREVISION | Revision ID #. | |
| IDUSER | Starting with version 2.0, this parameter became obsolete. During the import, leave it blank. | |
| IDCATEGORY | Document category ID #. |
Request structure:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:document">
<soapenv:Header/>
<soapenv:Body>
<urn:viewDocumentData>
<!--You may enter the following 4 items in any order-->
<urn:iddocument>?</urn:iddocument>
<urn:idrevision>?</urn:idrevision>
<urn:iduser>?</urn:iduser>
<urn:idcategory>?</urn:idcategory>
</urn:viewDocumentData>
</soapenv:Body>
</soapenv:Envelope>
Return:
| ID # | Description |
|---|---|
| return | SUCCESS: Returns a vector with the metadata: ▪ IDDOCUMENT: String; Document ID #.▪ NMTITLE: String; Document title.▪ IDCATEGORY: String; Category ID #.▪ NMCATEGORY: String; Category name.▪ STATUS: String; Document status; 1: Issue; 2: Released; 3: Revision; 4: Cancelled; 5: Indexing, 6: Approval, 7: Closed contract.▪ NMAUTHOR: String; Document author name.▪ IDREVISION: String; Revision ID #.▪ DTDOCUMENT: String; Document date.▪ QTVALIDITY: Integer; Validity.▪ FGMEASVALID: String; Validity type; 1: Days; 2: Months; 3: Years.▪ REVALIDATION: String; Revalidation.▪ DTVALIDITY: String; Validity date.▪ RESUME: String; Document summary.▪ CANCELREASON: String; Cancellation description.▪ URL: String; Document view API URL.▪ LINKSHARE: Document sharing link.▪ ATTRIBUTTES: Matrix; Document attributes:• ATTRIBUTTENAME: String; Attribute ID#.• ATTRIBUTTEVALUE: vector; Attribute values.▪ ELECTRONICFILE: Matrix; Electronic file• FILENAME: String; File nameFAILURE: 0: Message with the error found. |