getOverrideableDestinations()

Destinations getOverrideableDestinations(int sid)

This method returns a list of tariff destinations that can be overridden for a given service.

Parameters

sid
Format: integer
Purpose: Specifies the service ID of destinations that can be overridden.

Results

This method returns a Destinations XML document containing information about the tariff destinations that can be overridden for a service. The document can contain multiple destinations.

There are no messages defined by this method.

Example: A returned Destinations XML document

This example shows a Destinations XML document containing the destinations that can be overridden for service 772.

<Destinations>
  <DestinationType>
    <Destination>67558</Destination>
    <Service key="772">Test service 772</Service>
    <Company key="1">Example Telecom</Company>
    <Name>Emergency</Name>
    <DestinationClass>Domestic</DestinationClass>
  </DestinationType>
  <DestinationType>
    <Destination>67559</Destination>
    <Service key="772">Test service 772</Service>
    <Company key="1">Example Telecom</Company>
    <Name>Local</Name>
    <DestinationClass>Domestic</DestinationClass>
  </DestinationType>
  <DestinationType>
    <Destination>69751</Destination>
    <Service key="772">Test service 772</Service>
    <Company key="1">Example Telecom</Company>
    <Name>my destination</Name>
    <DestinationClass>Domestic</DestinationClass>
  </DestinationType>
</Destinations>

Faults

There are no faults returned by this method.

Java client syntax

java -cp build/smilewsv2-client.jar [options]
 com.inomial.smile.client.v2.examples.GetOverrideableDestinations sid
sid
Purpose: Specifies the service ID of destinations that can be overridden.
Note: For more information about the Java client and the options it accepts, see Java client syntax.