Удаление документа из объекта

Метод: DeleteDocuments

Предназначен для удаления документа (всего документа, а не его версий).

ПараметрОписание
ASPNETSessionIdИдентификатор сессии
documentIdsМассив ID документов
<?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>
    <DeleteDocuments xmlns="http://tempuri.org/">
      <ASPNETSessionId>string</ASPNETSessionId>
      <documentIds>
        <string>string</string>
        <string>string</string>
      </documentIds>
    </DeleteDocuments>
  </soap:Body>
</soap:Envelope>
ПараметрОписание
DeleteDocumentsResultРезультат выполнения запроса
<?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>
    <DeleteDocumentsResponse xmlns="http://tempuri.org/">
      <DeleteDocumentsResult>string</DeleteDocumentsResult>
    </DeleteDocumentsResponse>
  </soap:Body>
</soap:Envelope>