Skip navigation

API Reference

ApiStatus

With this operation, it is possible to verify that the API is operational by sending a message string to the API and verify that it is returned.

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

— <baseURI>/dcpapi/ApiStatus?WSDL

EXAMPLE OF API REQUEST:
<soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:oper="http://api.dcp.ericsson.net/ApiStatus">
<soapenv:Header/>
<soapenv:Body>
<apis:Echo>
<message>hello</message>
</apis:Echo>
</soapenv:Body>
</soapenv:Envelope>
EXAMPLE OF API RESPONSE:
<env:Envelope
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
<env:Header/>
<env:Body>
<ns2:echoResponse
xmlns:ns2="http://api.dcp.ericsson.net/ApiStatus">
<message>hello</message>
</ns2:echoResponse>
</env:Body>
</env:Envelope>