Содержание

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


URL: components/Services/APIService.asmx

Метод: GetUsedTemplatesForClassifier

Передаваемые параметры

ПараметрОписание
ASPNETSessionIdИдентификатор сессии
classifierIdИдентификатор таблицы
<?xml version="1.0" encoding="utf-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tem="http://tempuri.org/">
   <soapenv:Header/>
   <soapenv:Body>
      <tem:GetUsedTemplatesForClassifier>
         <tem:ASPNETSessionId>string</tem:ASPNETSessionId>
         <tem:classifierId>string</tem:classifierId>
      </tem:GetUsedTemplatesForClassifier>
   </soapenv:Body>
</soapenv:Envelope>

Возвращаемые параметры

ПараметрОписание
GetUsedObjectsByClassifierResultРезультат выполнения метода
DirectoriesМассив данных объекта/объектов DirectoryWrapper, включающий в себя:
Name - название типа объекта;
UID - идентификатор типа объекта.
<?xml version="1.0" encoding="utf-8"?>
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
   <s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
      <GetUsedTemplatesForClassifierResponse xmlns="http://tempuri.org/">
         <GetUsedTemplatesForClassifierResult>
            <Directories>
               <DirectoryWrapper>
                  <Name>string</Name>
                  <UID>string</UID>
               </DirectoryWrapper>
            </Directories>
         </GetUsedTemplatesForClassifierResult>
      </GetUsedTemplatesForClassifierResponse>
   </s:Body>
</s:Envelope>