ServiceProviderExternalCustomRingbackGetRequest
Bases: OCIRequest
Request the service provider level data associated with External Custom Ringback. The response is either a ServiceProviderExternalCustomRingbackGetResponse or an ErrorResponse.
Attributes:
service_provider_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to ServiceProviderExternalCustomRingbackGetRequest.
Attributes:
prefix_digits (Optional[str]):
server_net_address (Optional[str]):
server_port (Optional[int]):
timeout_seconds (int):
Source code in src/mercury_ocip_fast/commands/commands.py
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import ServiceProviderExternalCustomRingbackGetRequest
client = Client()
command = ServiceProviderExternalCustomRingbackGetRequest(
service_provider_id=...,
)
response = client.command(command)
print(response)