API Reference

GetStatus

With this operation, it is possible to retrieve a status number for each of the services.

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

— <baseURI>/dcpapi/OverallStatus?WSDL

EXAMPLE OF API REQUEST:
<soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" ⇒
xmlns:over="http://api.dcp.ericsson.net/OverallStatus">
<soapenv:Header/>
<soapenv:Body>
<over:GetStatus></over:GetStatus>
</soapenv:Body>
</soapenv:Envelope>

Or (Optionally running on behalf of a customer)

<soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" ⇒
xmlns:over="http://api.dcp.ericsson.net/OverallStatus">
<soapenv:Header/>
<soapenv:Body>
<over:GetStatus>
<customerNo>00000001</customerNo>
</over:GetStatus>
</soapenv:Body>
</soapenv:Envelope>
EXAMPLE OF API RESPONSE:
<env:Envelope
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
<env:Header/>
<env:Body>
<ns2:GetStatusResponse
xmlns:ns2="http://api.dcp.ericsson.net/OverallStatus">
<voice>1</voice>
<cSD>1</cSD>
<sMS>2</sMS>
<gPRS>1</gPRS>
<customerAccessService>2</customerAccessService>
<customerSMSCAccount>3</customerSMSCAccount>
</ns2:GetStatusResponse>
</env:Body>
</env:Envelope>