SOAP API - getDocumentMetadata

The table summarizes the SOAP API - getDocumentMetadata.

Request Uses the GetDocumentMetadataRequest element (from the DocumentService schema)
Parameter notes
Response Returns a GetDocumentMetadataResponse element (from the DocumentService schema).
Example Request:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:doc="http://document.api.bds.tibco.com">
   <soapenv:Header/>
   <soapenv:Body>
      <doc:GetDocumentMetadataRequest>
         <reference>DocumentID-f61fd51d-3895-40a0-8952-1a4bd992b2da;1.0</reference>
      </doc:GetDocumentMetadataRequest>
   </soapenv:Body>
</soapenv:Envelope>
Response:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
   <SOAP-ENV:Header/>
   <SOAP-ENV:Body>
      <GetDocumentMetadataResponse xmlns="http://document.api.bds.tibco.com">
         <metadata xmlns="">
            <specifier>
               <id>f61fd51d-3895-40a0-8952-1a4bd992b2da;1.0</id>
            </specifier>
            <name>Proposal.docx</name>
            <version>1.0</version>
            <mimeType>application/vnd.openxmlformats-officedocument.wordprocessingml.document</mimeType>
            <createdDateTime>2014-10-02T11:06:17.955</createdDateTime>
            <createdBy>admin</createdBy>
            <lastModifiedDateTime>2014-10-02T11:06:17.955</lastModifiedDateTime>
            <lastModifiedBy>admin</lastModifiedBy>
            <byteSize>24008</byteSize>
         </metadata>
      </GetDocumentMetadataResponse>
   </SOAP-ENV:Body>
</SOAP-ENV:Envelope>