API Reference

QueryTriggerAlarms

With this operation, it is possible to retrieve a list of more detailed information about all the active alarms. Up to 100 alarms are returned.

IMPORTANT! This SOAP API will be deprecated.

The WSDL is available at the following URL, where the <baseURI> parameter is provided by the operator:

— <baseURI>/dcpapi/TriggerAlarms?WSDL

EXAMPLE OF API REQUEST:
<soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" ⇒
xmlns:trig="http://api.dcp.ericsson.net/TriggerAlarms">
<soapenv:Header/>
<soapenv:Body>
<trig:QueryTriggerAlarms>
<customerNo>00000001</customerNo>
<alarmFilter>alertTriggers</alarmFilter>
</trig:QueryTriggerAlarms>
</soapenv:Body>
</soapenv:Envelope>
EXAMPLE OF API RESPONSE:
<env:Envelope
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
<env:Header/>
<env:Body>
<ns2:QueryTriggerAlarmsResponse ⇒
xmlns:ns2="http://api.dcp.ericsson.net/TriggerAlarms">
<alarms>
<alarm>
<id>15</id>
<triggerId>11</triggerId>
<triggerDescription>SMS MO under run per timeframe</triggerDescription>
<imsi>123456789123456</imsi>
<msisdn>123456789123456</msisdn>
<thresholdValue>337</thresholdValue>
<timestamp>2011-12-17T18:16:18.000Z</timestamp>
<alarmType>Information</alarmType>
</alarm>
<alarm>
<id>16</id>
<triggerId>1</triggerId>
<triggerDescription>Location update</triggerDescription>
<imsi>123456789123456</imsi>
<msisdn>123456789123456</msisdn>
<thresholdValue>1</thresholdValue>
<timestamp>2011-12-17T00:48:38.000Z</timestamp>
<alarmType>Deactivation</alarmType>
</alarm>
</alarms>
</ns2:QueryTriggerAlarmsResponse>
</env:Body>
</env:Envelope>