Skip navigation

API Reference

QueryAverageTrafficUsageHistory

With this operation, it is possible to retrieve previously aggregated traffic usage information from a specific time period together with the number of active subscriptions on each required date. The traffic can be filtered on a specific sub-customer if the user has the authority.

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/AggregatedTraffic?WSDL

EXAMPLE OF API REQUEST:
<soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:agg="http://api.dcp.ericsson.net/AggregatedTraffic">
<soapenv:Header/>
<soapenv:Body>
<agg:QueryAverageTrafficUsageHistory>
<customerNo>00000001</customerNo>
<startDate>2016-11-01</startDate>
<endDate>2016-11-08</endDate>
</agg:QueryAverageTrafficUsageHistory>
</soapenv:Body>
</soapenv:Envelope>
EXAMPLE OF API RESPONSE:
<env:Envelope
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
<env:Header/>
<env:Body>
<ns2:QueryAverageTrafficUsageHistoryResponse ⇒
xmlns:ns2="http://api.dcp.ericsson.net/AggregatedTraffic">
<averageTrafficUsage>
<aggregationDate>2013-11-01</aggregationDate>
<gprsVolume>0</gprsVolume>
<smsVolume>2</smsVolume>
<activeSubscriptionsCount>4</activeSubscriptionsCount>
</averageTrafficUsage>
</ns2:QueryAverageTrafficUsageHistoryResponse>
</env:Body>
</env:Envelope>