API Reference
ChangeAlternativeRoamingProvider
With this operation, it is possible to change Alternative Roaming Provider (ARP) details for a single subscription. The request returns a registered serviceRequestId, indicating that the actual change can occur at a later time.
IMPORTANT! This SOAP API has a REST replacement which we strongly suggest as alternative. Please use this REST API instead: |
The WSDL is available at the following URL, where the <baseURI> parameter is provided by the operator:
— <baseURI>/dcpapi/SubscriptionManagement?WSDL
EXAMPLE OF API REQUEST:
Assigning an ARP to a subscription:
<soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" ⇒
xmlns:sub="http://api.dcp.ericsson.net/SubscriptionManagement">
<soapenv:Header/>
<soapenv:Body>
<sub:ChangeAlternativeRoamingProvider>
<resource>
<id>240084604569763</id>
<type>imsi</type>
</resource>
<tadig>OPA01</tadig>
</sub:ChangeAlternativeRoamingProvider>
</soapenv:Body>
</soapenv:Envelope>
Or removing an ARP assigned to the subscription:
<soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" ⇒
xmlns:sub="http://api.dcp.ericsson.net/SubscriptionManagement">
<soapenv:Header/>
<soapenv:Body>
<sub:ChangeAlternativeRoamingProvider>
<resource>
<id>240084604569763</id>
<type>imsi</type>
</resource>
<tadig></tadig>
</sub:ChangeAlternativeRoamingProvider>
</soapenv:Body>
</soapenv:Envelope>
EXAMPLE OF API RESPONSE:
Assigning an ARP to a subscription:
<env:Envelope
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
<env:Header/>
<env:Body>
<ns2:ChangeAlternativeRoamingProviderResponse ⇒
xmlns:ns2="http://api.dcp.ericsson.net/SubscriptionManagement">
<serviceRequestId>REQ000000047001</serviceRequestId>
</ns2:ChangeSubscriptionRegionResponse>
</env:Body>
</env:Envelope>
Or removing an ARP assigned to the subscription:
<env:Envelope
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
<env:Header/>
<env:Body>
<ns2:ChangeAlternativeRoamingProviderResponse ⇒
xmlns:ns2="http://api.dcp.ericsson.net/SubscriptionManagement">
<serviceRequestId>REQ000000047002</serviceRequestId>
</ns2:ChangeSubscriptionRegionResponse>
</env:Body>
</env:Envelope>