deleteSearchFilterRemote Operation

With deleteSearchFilterRemote operation you can remove an existing search filter on a managed TIBCO LogLogic Appliance from a Management Station.

Request Parameters

authToken, applianceIP, searchFilterName

Response

searchFilterResponse (see searchFilterResponse Type)

Example

SOAP request for deleteSearchFilterRemote Operation:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:sear="SearchFilterService">
   <soapenv:Header/>
   <soapenv:Body>
      <sear:deleteSearchFilterRemote>
         <!--Optional:-->
         <sear:authToken>admin/admin123</sear:authToken>
         <!--Optional:-->
         <sear:applianceIP>10.114.66.36</sear:applianceIP>
         <!--Optional:-->
         <sear:searchFilterName>test123</sear:searchFilterName>
      </sear:deleteSearchFilterRemote>
   </soapenv:Body>
</soapenv:Envelope>
SOAP response for deleteSearchFilterRemote Operation:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
   <soapenv:Header/>
   <soapenv:Body>
      <ns:deleteSearchFilterRemoteResponse xmlns:ns="SearchFilterService">
         <ns:return xsi:type="ax227:SearchFilterResponse" xmlns:ax227="http://searchfilter.services.logapp.loglogic.com/xsd" xmlns:ax228="http://services.logapp.loglogic.com/xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
            <ax228:authToken xsi:nil="true"/>
            <ax228:resultCount>1</ax228:resultCount>
            <ax228:statusCode>2000</ax228:statusCode>
            <ax228:statusMessage>Deleted searchFilter test123 successfully - 1</ax228:statusMessage>
            <ax228:summaryOnly>false</ax228:summaryOnly>
            <ax227:resultSet xsi:type="ax227:SearchFilterDetail">
               <ax227:expression1>exp1 updated</ax227:expression1>
               <ax227:expression2>exp2 updated</ax227:expression2>
               <ax227:expressionOperator>OR</ax227:expressionOperator>
               <ax227:expressionType>Use Words</ax227:expressionType>
               <ax227:filterDescription>desc update</ax227:filterDescription>
               <ax227:filterName>test123</ax227:filterName>
               <ax227:sharedWithOthers>yes</ax227:sharedWithOthers>
            </ax227:resultSet>
         </ns:return>
      </ns:deleteSearchFilterRemoteResponse>
   </soapenv:Body>
</soapenv:Envelope>