Список значений дополнительных параметров клиентов
Описание
Возвращает значения параметров и цвет для клиентов. Если входные параметры не заданы, то выдается полный список клиентов с их значениями.
Запрос
Параметр, выделенный жирным, является обязательным к заполнению!
Параметр | Тип | NULL | Описание |
---|---|---|---|
ClientParameterID | 4.1.2.8. ClientParameterID | Вид дополнительного параметра клиента | |
ClientID | 4.1.2.4. ClientID | Клиент |
Пример
<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:ClientAdditionalParameterValueRead> <par:Params> <Property xmlns="http://v8.1c.ru/8.1/data/core" name="ClientID"> <Value xsi:type="xs:string">80b8b369-2bff-4597-de02-940d372919cf</Value> </Property> <Property xmlns="http://v8.1c.ru/8.1/data/core" name="ClientParameterID"> <Value xsi:type="xs:string">b3691436-de02-2bff-80e7-19cf5a72940d</Value> </Property> </par:Params> </par:ClientAdditionalParameterValueRead> </soap:Body> </soap:Envelope>
Ответ (структура ResultData)
Параметр | Тип | Описание |
---|---|---|
ClientParameterID | 4.1.2.8. ClientParameterID | Вид дополнительного параметра клиента |
ClientID | 4.1.2.4. ClientID | Клиент |
Value | Строка(10) | Значение параметра у клиента |
Color | Строка(6) | Цвет параметра у клиента. Значения:
|
Пример ответа
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope"> <soap:Body> <m:ClientAdditionalParameterValueReadResponse xmlns:m="http://buhphone.com/PartnerWebAPI2"> <m:return xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Property name="ResultCode" xmlns="http://v8.1c.ru/8.1/data/core"> <Value xsi:type="xs:string">SUCCESS</Value> </Property> <Property name="ResultData" xmlns="http://v8.1c.ru/8.1/data/core"> <Value xsi:type="ValueTable"> <column> <Name>ClientParameterID</Name> <ValueType> <Type>xs:string</Type> <StringQualifiers> <Length>0</Length> <AllowedLength>Variable</AllowedLength> </StringQualifiers> </ValueType> </column> <column> <Name>ClientID</Name> <ValueType> <Type>xs:string</Type> <StringQualifiers> <Length>0</Length> <AllowedLength>Variable</AllowedLength> </StringQualifiers> </ValueType> </column> <column> <Name>Value</Name> <ValueType> <Type>xs:string</Type> <StringQualifiers> <Length>0</Length> <AllowedLength>Variable</AllowedLength> </StringQualifiers> </ValueType> </column> <column> <Name>Color</Name> <ValueType> <Type>xs:string</Type> <StringQualifiers> <Length>0</Length> <AllowedLength>Variable</AllowedLength> </StringQualifiers> </ValueType> </column> <row> <Value xsi:type="xs:string">b3691436-de02-2bff-80e7-19cf5a72940d</Value> <Value xsi:type="xs:string">80b8b369-2bff-4597-de02-940d372919cf</Value> <Value xsi:type="xs:string">33333</Value> <Value xsi:type="xs:string">RED</Value> </row> </Value> </Property> </m:return> </m:ClientAdditionalParameterValueReadResponse> </soap:Body> </soap:Envelope>