deleteAlert Operation

With deleteAlert operation you can delete existing alerts in the TIBCO LogLogic Appliance.

Request Parameters

authToken, alertName

Response

alertResponse (see alertResponse Type)

Example

SOAP request for deleteAlert Operation. To delete the alert named MyAlertName:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:aler="AlertService">
   <soapenv:Header/>
   <soapenv:Body>
      <aler:deleteAlert>
         <aler:authToken>admin+1Y2O2W261O1C1J1X294</aler:authToken>
         <aler:alertName>MyAlertName</aler:alertName>
      </aler:deleteAlert>
   </soapenv:Body>
</soapenv:Envelope>
SOAP response for deleteAlert Operation:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
   <soapenv:Header/>
   <soapenv:Body>
      <ns:deleteAlertResponse xmlns:ns="AlertService">
         <ns:return xsi:type="ax27:AlertResponse" xmlns:ax27="http://alert.services.logapp.loglogic.com/xsd" xmlns:ax28="http://services.logapp.loglogic.com/xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
            <ax28:authToken xsi:nil="true"/>
            <ax28:resultCount>1</ax28:resultCount>
            <ax28:statusCode>2000</ax28:statusCode>
            <ax28:statusMessage>Deleted alert MyAlertUpdate successfully - 1</ax28:statusMessage>
            <ax28:summaryOnly>false</ax28:summaryOnly>
            <ax27:resultSet xsi:type="ax27:AlertDetail">
               <ax27:alertRules>FewerThan/20//MoreThan/59</ax27:alertRules>
               <ax27:alertType>Adaptive Baseline Alert</ax27:alertType>
               <ax27:desc>Hello-Dec-Update</ax27:desc>
               <ax27:devices>All Other UNIX</ax27:devices>
               <ax27:enabled>no</ax27:enabled>
               <ax27:name>MyAlertUpdate</ax27:name>
               <ax27:networkMonitorPolicyRules xsi:nil="true"/>
               <ax27:priority>High</ax27:priority>
               <ax27:resetTime>1800</ax27:resetTime>
               <ax27:snmpOId/>
               <ax27:trackIndividualDevice>yes</ax27:trackIndividualDevice>
               <ax27:users>admin</ax27:users>
            </ax27:resultSet>
         </ns:return>
      </ns:deleteAlertResponse>
   </soapenv:Body>
</soapenv:Envelope>