Получение идентификатора последней версии документа
Метод: GetDocumentVersions
Передаваемые параметры
Параметр | Описание |
ASPNETSessionId | Идентификатор сессии |
documentId | Идентификатор документа |
<?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>
<GetDocumentVersions xmlns="http://tempuri.org/">
<ASPNETSessionId>string</ASPNETSessionId>
<documentId>string</documentId>
</GetDocumentVersions>
</soap:Body>
</soap:Envelope>
Возвращаемые параметры
Параметр | Описание |
VersionId | Идентификатор версии документа |
VersionNumber | Версия документа |
<?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>
<GetDocumentVersionsResponse xmlns="http://tempuri.org/">
<GetDocumentVersionsResult>
<DocumentVersionWrapper>
<VersionId>string</VersionId>
<VersionNumber>int</VersionNumber>
</DocumentVersionWrapper>
</GetDocumentVersionsResult>
</GetDocumentVersionsResponse>
</soap:Body>
</soap:Envelope>