API Reference

QuerySubscriptionsStatusHistory

With this operation, it is possible to retrieve a list of aggregated status volumes for each selected date.

IMPORTANT! This SOAP API has a REST replacement which we strongly suggest as alternative.
Please use this REST API instead: 

IoT Accelerator REST API

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

— <baseURI>/dcpapi/SubscriptionManagement?WSDL

EXAMPLE OF API REQUEST:
<soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" ⇒
xmlns:sub="http://api.dcp.ericsson.net/SubscriptionManagement">
<soapenv:Header/>
<soapenv:Body>
<sub:QuerySubscriptionsStatusHistory>
<customerNo>00000001</customerNo>
<startDate>2016-02-01</startDate>
<endDate>2016-02-08</endDate>
</sub:QuerySubscriptionsStatusHistory>
</soapenv:Body>
</soapenv:Envelope>
EXAMPLE OF API RESPONSE:
<env:Envelope
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
<env:Header/>
<env:Body>
<ns2:QuerySubscriptionsStatusHistoryResponse ⇒
xmlns:ns2="http://api.dcp.ericsson.net/SubscriptionManagement">
<aggregatedStatus>
<aggregationDate>2013-09-29</aggregationDate>
<aggregatedStatusVolume>
<status>Active</status>
<statusVolume>1542</statusVolume>
</aggregatedStatusVolume>
<aggregatedStatusVolume>
<status>Deactivated</status>
<statusVolume>319</statusVolume>
</aggregatedStatusVolume>
<aggregatedStatusVolume>
<status>Ordered</status>
<statusVolume>2</statusVolume>
</aggregatedStatusVolume>
</aggregatedStatus>
<aggregatedStatus>
<aggregationDate>2013-09-30</aggregationDate>
<aggregatedStatusVolume>
<status>Active</status>
<statusVolume>1542</statusVolume>
</aggregatedStatusVolume>
<aggregatedStatusVolume>
<status>Pause</status>
<statusVolume>10</statusVolume>
</aggregatedStatusVolume>
<aggregatedStatusVolume>
<status>Terminated</status>
<statusVolume>5</statusVolume>
</aggregatedStatusVolume>
</aggregatedStatus>
</ns2:QuerySubscriptionsStatusHistoryResponse>
</env:Body>
</env:Envelope>