DownloadDocumentVersion API

Downloads a specific version of a document and returns its content as a raw byte array. Use this when you need a particular historical version rather than the latest. For large files, use the chunked download workflow (GetDownloadHandlerByVersionDownloadFileChunkDeleteDownloadHandler) instead.

Endpoint

/srv.asmx/DownloadDocumentVersion

Methods

Parameters

Parameter Type Required Description
authenticationTicket string Yes Authentication ticket obtained from AuthenticateUser.
Path string Yes Full infoRouter path of the document (e.g. /MyLibrary/Reports/Report.pdf).
VersionNumber int Yes Version number to download. Accepts both legacy format (e.g. 1, 2, 3) and modernized format (e.g. 1000000, 2000000, 3000000) — legacy values are automatically converted internally. Use GetDocumentVersions to retrieve valid version numbers.

Response

Success Response

The response body contains the raw binary content of the specified document version.

Error Response

On any error (authentication failure, document not found, version not found, offline document, or download failure), an empty byte array is returned. There is no XML error message. The caller must check whether the returned byte array is empty to detect failure.


Required Permissions

Any authenticated user with read access to the document may call this API.


Example

GET Request

GET /srv.asmx/DownloadDocumentVersion
  ?authenticationTicket=3f2504e0-4f89-11d3-9a0c-0305e82c3301
  &Path=/MyLibrary/Reports/Report.pdf
  &VersionNumber=3000000
HTTP/1.1

POST Request

POST /srv.asmx/DownloadDocumentVersion HTTP/1.1
Content-Type: application/x-www-form-urlencoded

authenticationTicket=3f2504e0-4f89-11d3-9a0c-0305e82c3301
&Path=/MyLibrary/Reports/Report.pdf
&VersionNumber=3000000

SOAP Request

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
               xmlns:tns="http://tempuri.org/">
  <soap:Body>
    <tns:DownloadDocumentVersion>
      <tns:authenticationTicket>3f2504e0-4f89-11d3-9a0c-0305e82c3301</tns:authenticationTicket>
      <tns:Path>/MyLibrary/Reports/Report.pdf</tns:Path>
      <tns:VersionNumber>3000000</tns:VersionNumber>
    </tns:DownloadDocumentVersion>
  </soap:Body>
</soap:Envelope>

SOAP Response (success)

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <DownloadDocumentVersionResponse xmlns="http://tempuri.org/">
      <DownloadDocumentVersionResult>JVBERi0xLjQK...</DownloadDocumentVersionResult>
    </DownloadDocumentVersionResponse>
  </soap:Body>
</soap:Envelope>

Notes



Error Codes

Condition Result
Invalid or missing authentication ticket Empty byte array returned
Document not found at the specified path Empty byte array returned
Version not found Empty byte array returned
Document is in Offline state Empty byte array returned
Download failure Empty byte array returned

For detailed documentation visit: https://support.inforouter.com/api-docs/DownloadDocumentVersion