API Reference
QueryOperators
With this operation, it is possible to retrieve a list of all available operators corresponding operator and country codes.
The WSDL is available at the following URL, where the <baseURI> parameter is provided by the operator:
— <baseURI>/dcpapi/OperatorInfo?WSDL
EXAMPLE OF API REQUEST:
<soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" <soapenv:Header/>
<soapenv:Body> <oper:QueryOperators></oper:QueryOperators> </soapenv:Body>
</soapenv:Envelope>
EXAMPLE OF API RESPONSE:
<env:Envelope
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
<env:Header/>
<env:Body>
<ns2:QueryOperatorCodeResponse
xmlns:ns2="http://api.dcp.ericsson.net/OperatorInfo">
<operator>
<name>Operator A</name>
<code>24299</code>
<countryCode>NO</countryCode>
<countryName>Norway<\countryName>
<callingCode>+47<\callingCode>
</operator>
<operator>
<name>Operator B</name>
<code>24099</code>
<countryCode>SE</countryCode>
<countryName>Sweden<\countryName>
<callingCode>+46<\callingCode>
</operator>
</ns2:QueryOperatorCodeResponse>
</env:Body>
</env:Envelope>