URL: components/Services/APIService.asmx
Метод: GetDirectoriesList
| Параметр | Описание |
|---|---|
ASPNETSessionId | Идентификатор сессии |
type | Тип получаемого списка таблиц (NonClassifiers/Classifiers) |
<?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:GetDirectoriesList> <tem:ASPNETSessionId>string</tem:ASPNETSessionId> <tem:type>string</tem:type> </tem:GetDirectoriesList> </soapenv:Body> </soapenv:Envelope>
| Параметр | Описание |
|---|---|
GetDirectoriesListResult | Массив таблиц |
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"> <GetDirectoriesListResponse xmlns="http://tempuri.org/"> <GetDirectoriesListResult> <Directories> <DirectoryWrapper> <Name>string</Name> <UID>string</UID> </DirectoryWrapper> <DirectoryWrapper> <Name>string</Name> <UID>string</UID> </DirectoryWrapper> </Directories> </GetDirectoriesListResult> </GetDirectoriesListResponse> </s:Body> </s:Envelope>