Получение информации об используемых объектах

Метод: GetUsedObjectsByClassifier

ПараметрОписание
ASPNETSessionIdИдентификатор сессии
classifierIdИдентификатор справочника
<?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>
    <GetUsedObjectsByClassifier xmlns="http://tempuri.org/">
      <ASPNETSessionId>string</ASPNETSessionId>
      <classifierId>string</classifierId>
    </GetUsedObjectsByClassifier>
  </soap:Body>
</soap:Envelope>
ПараметрОписание
GetUsedObjectsByClassifierResultРезультат выполнения метода
DirectoriesМассив данных объекта/объектов DirectoryWrapper, включающий в себя:
NameНазвание типа объекта
UIDИдентификатор типа объекта
<?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>
    <GetUsedObjectsByClassifierResponse xmlns="http://tempuri.org/">
      <GetUsedObjectsByClassifierResult>
        <Directories>
          <DirectoryWrapper>
            <Name>string</Name>
            <UID>string</UID>
          </DirectoryWrapper>
          <DirectoryWrapper>
            <Name>string</Name>
            <UID>string</UID>
          </DirectoryWrapper>
        </Directories>
      </GetUsedObjectsByClassifierResult>
    </GetUsedObjectsByClassifierResponse>
  </soap:Body>
</soap:Envelope>