GroupRoutePointGetDNISListRequest
Bases: OCIRequest
Get a list of DNIS that are configured for a Route Point. The response is either GroupRoutePointGetDNISListResponse or ErrorResponse.
Attributes:
service_user_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the GroupRoutePointGetDNISListRequest. Contains a table with column headings: "Name", "Phone Number", "Extension".
Attributes:
display_dnis_number (bool):
display_dnis_name (bool):
dnis_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import GroupRoutePointGetDNISListRequest
client = Client()
command = GroupRoutePointGetDNISListRequest(
service_user_id=...,
)
response = client.command(command)
print(response)