Содержание

Удаление запроса заполнения форм отчетности


URL: components/Services/APIForms.asmx

Метод: DeleteFormRequest

Передаваемые параметры

ПараметрОписание
ASPNETSessionIdИдентификатор сессии
formRequestIds: guid Список с идентификаторами запросов форм сбора отчетности. В интерфейсе Системы этот идентификатор можно найти, к примеру, на странице пришедшего запроса на заполнение формы (указан в адресной строке после «request=»)
<?xml version="1.0" encoding="utf-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:str="http://streamline/">
   <soapenv:Header/>
   <soapenv:Body>
      <str:DeleteFormRequests>
         <str:ASPNETSessionId>string</str:ASPNETSessionId>
         <str:formRequestIds>
            <str:guid>guid</str:guid>
         </str:formRequestIds>
      </str:DeleteFormRequests>
   </soapenv:Body>
</soapenv:Envelope>

Возвращаемыq параметр

ПараметрОписание
DeleteFormRequestResultРезультат выполнения метода (успешно, либо нет с указанием причины)
<?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">
      <DeleteFormRequestsResponse xmlns="http://streamline/">
         <DeleteFormRequestsResult>string</DeleteFormRequestsResult>
      </DeleteFormRequestsResponse>
   </s:Body>
</s:Envelope>