Описание
Получение списка регионов.
Page Properties | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
Запрос
Info |
---|
Параметр, выделенный жирным, является обязательным к заполнению! |
Info |
---|
В операции не используются входные параметры. |
Code Block | ||||
---|---|---|---|---|
| ||||
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:par="http://buhphone.com/PartnerWebAPI2" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:core="http://v8.1c.ru/8.1/data/core" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soap:Header/>
<soap:Body>
<par:RegionRead>
<par:Params>
</par:Params>
</par:RegionRead>
</soap:Body>
</soap:Envelope> |
Ответ (структура ResultData)
Параметр | Тип | Описание |
---|---|---|
RegionID | UUID | Идентификатор региона. |
RegionName | Строка(50) | Наименование региона. |
Code Block | ||||
---|---|---|---|---|
| ||||
<Structure xmlns="http://v8.1c.ru/8.1/data/core" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Property name="ResultCode"> <Value xsi:type="xs:string">SUCCESS</Value> </Property> <Property name="ResultData"> <Value xsi:type="ValueTable"> <column> <Name>RegionID</Name> <ValueType> <Type>xs:string</Type> <Type>Null</Type> <StringQualifiers> <Length>0</Length> <AllowedLength>Variable</AllowedLength> </StringQualifiers> </ValueType> </column> <column> <Name>RegionName</Name> <ValueType> <Type>xs:string</Type> <StringQualifiers> <Length>50</Length> <AllowedLength>Variable</AllowedLength> </StringQualifiers> </ValueType> </column> <row> <Value xsi:type="xs:string">abb11c22-a1b2-11a2-89b0-aa5a5a728aa8</Value> <Value xsi:type="xs:string">Регион №1</Value> </row> </Value> </Property> </Structure> |