API Reference

UsageDataDownload

This service makes it possible to download usage data (SMS CDR, GPRS CDR, and TAP records) stored in the Data Warehouse.

IMPORTANT! This SOAP API has a REST replacement which we strongly suggest as alternative.

IoT Accelerator REST API

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

— <baseURI>/dcpapi/UsageDataDownload?WSDL

EXAMPLE OF API REQUEST:
<soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:usag="http://api.dcp.ericsson.net/UsageDataDownload">
<soapenv:Header/>
<soapenv:Body>
<usag:Query>
<customerno>00000001</customerno>
<startdate>2016-11-27</startdate>
<enddate>2016-11-30</enddate>
</usag:Query>
</soapenv:Body>
</soapenv:Envelope>
EXAMPLE OF API RESPONSE:
<env:Envelope
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
<env:Header/>
<env:Body>
<ns2:QueryResponse
xmlns:ns2="http://api.dcp.ericsson.net/UsageDataDownload">
<usageData>
<date>2016-11-28T22:00:00.000Z</date>
<size>3404</size>
<path>/api/usagedata?id=1234567800000</path>
</usageData>
<usageData>
<date>2016-11-29T22:00:00.000Z</date>
<size>2305</size>
<path>/api/usagedata?id=1234560000000</path>
</usageData>
</ns2:QueryResponse>
</env:Body>
</env:Envelope>