GroupRoutePointGetDNISAgentListRequest
Bases: OCIRequest
Get a list of agent who selected the DNIS as the outgoing call. The response is either GroupRoutePointGetDNISAgentListResponse or ErrorResponse.
Attributes:
dnis_key (DNISKey):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the GroupRoutePointGetDNISAgentListRequest. Contains a table with column headings: "User Id", "Last Name", "First Name", "Hiragana Last Name", "Hiragana First Name", "Phone Number", "Extension", "Department", "Email Address".
Attributes:
agent_table (OCITable):
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 GroupRoutePointGetDNISAgentListRequest
client = Client()
command = GroupRoutePointGetDNISAgentListRequest(
dnis_key=...,
)
response = client.command(command)
print(response)