Получение информации об используемых объектах
URL: components/Services/APIService.asmx
Метод: GetUsedObjectsByClassifier
Передаваемые параметры
| Параметр | Описание |
|---|---|
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:GetUsedObjectsByClassifier> <tem:ASPNETSessionId>string</tem:ASPNETSessionId> <tem:classifierId>string</tem:classifierId> </tem:GetUsedObjectsByClassifier> </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"> <GetUsedObjectsByClassifierResponse xmlns="http://tempuri.org/"> <GetUsedObjectsByClassifierResult> <Directories> <DirectoryWrapper> <Name>string</Name> <UID>string</UID> </DirectoryWrapper> </Directories> </GetUsedObjectsByClassifierResult> </GetUsedObjectsByClassifierResponse> </s:Body> </s:Envelope>