Скачивание версии документа в кодировке base64

Метод: DownloadDocumentFile

ПараметрОписание
ASPNETSessionIdИдентификатор сессии
documentId*Идентификатор документа(карточки документа)
versionIdИдентификатор версии документа (указывается, если нужно скачать указанную версию документа)
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <DownloadDocumentFile xmlns="http://streamline/">
      <ASPNETSessionId>string</ASPNETSessionId>
      <documentId>guid</documentId>
      <versionId>guid</versionId>
    </DownloadDocumentFile>
  </soap:Body>
</soap:Envelope>
ПараметрОписание
DownloadDocumentFileResultРезультат выполнения метода (успешно, либо нет с указанием причины)
DocumentIdИдентификатор документа (карточки документа)
DocumentNameНазвание карточки документа
version
IDИдентификатор версии документа
NumberНомер версии документа (цифра 1,2,3 и т.д.)
FileNameНазвание файла, который был загружен в качестве версии документа, с его расширением
ContentType*Тип загружаемого файла
BodyВерсия файла документа в кодировке base64
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <DownloadDocumentFileResponse xmlns="http://streamline/">
      <DownloadDocumentFileResult>
        <DocumentId>guid</DocumentId>
        <DocumentName>string</DocumentName>
        <Version>
          <Id>guid</Id>
          <Number>int</Number>
          <FileName>string</FileName>
          <ContentType>string</ContentType>
          <Body>base64Binary</Body>
        </Version>
      </DownloadDocumentFileResult>
    </DownloadDocumentFileResponse>
  </soap:Body>
</soap:Envelope>