Получение списка статусов заявок на обслуживание
Описание
Получение списка статусов заявок на обслуживание. Включая удаленные
Запрос
Входных параметров нет
Пример
<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:ServiceRequestStatusRead> <par:Params> </par:Params> </par:ServiceRequestStatusRead> </soap:Body> </soap:Envelope>
Ответ (структура ResultData)
Параметр | Тип | Описание |
---|---|---|
ServiceRequestStatusID | 4.1.2.14. ServiceRequestStatusID | ID статуса |
Name | Строка(100) | Наименование |
ServiceRequestStatusIType | Строка(25) | Тип статуса Значения:
|
Deleted | Булево | Признак удаления |
Пример ответа
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope"> <soap:Body> <m:ServiceRequestStatusReadResponse 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>Name</Name> <ValueType> <Type>xs:string</Type> <StringQualifiers> <Length>25</Length> <AllowedLength>Variable</AllowedLength> </StringQualifiers> </ValueType> </column> <column> <Name>ServiceRequestStatusIType</Name> <ValueType> <Type>xs:string</Type> <StringQualifiers> <Length>9</Length> <AllowedLength>Variable</AllowedLength> </StringQualifiers> </ValueType> </column> <column> <Name>ServiceRequestStatusID</Name> <ValueType> <Type>xs:string</Type> <Type>Null</Type> <StringQualifiers> <Length>0</Length> <AllowedLength>Variable</AllowedLength> </StringQualifiers> </ValueType> </column> <column> <Name>Deleted</Name> <ValueType> <Type>xs:boolean</Type> </ValueType> </column> <row> <Value xsi:type="xs:string">Выполняется</Value> <Value xsi:type="xs:string">WORK</Value> <Value xsi:type="xs:string">c2e67229-6bb6-11e8-80c3-ba5e5a7280d8</Value> <Value xsi:type="xs:boolean">false</Value> </row> <row> <Value xsi:type="xs:string">Завершена</Value> <Value xsi:type="xs:string">FINISHED</Value> <Value xsi:type="xs:string">c2e6722a-6bb6-11e8-ba5e-ba5e5a7280d8</Value> <Value xsi:type="xs:boolean">false</Value> </row> <row> <Value xsi:type="xs:string">Новая</Value> <Value xsi:type="xs:string">NEW</Value> <Value xsi:type="xs:string">c2e6722b-ba5e-11e8-80c3-ba5e5a7280d8</Value> <Value xsi:type="xs:boolean">false</Value> </row> <row> <Value xsi:type="xs:string">Отменена</Value> <Value xsi:type="xs:string">CANCELLED</Value> <Value xsi:type="xs:string">c2e6ba5e-6bb6-11e8-80c3-ba5e5a7280d8</Value> <Value xsi:type="xs:boolean">false</Value> </row> <row> <Value xsi:type="xs:string">Приостановлена</Value> <Value xsi:type="xs:string">SUSPENDED</Value> <Value xsi:type="xs:string">ba5e722d-6bb6-11e8-ba5e-ba5e5a7280d8</Value> <Value xsi:type="xs:boolean">false</Value> </row> </Value> </Property> </m:return> </m:ServiceRequestStatusReadResponse> </soap:Body> </soap:Envelope>