GroupCallCenterGetDNISListRequest
Bases: OCIRequest
Get a list of DNIS that are configured for a Call Center. The response is either GroupCallCenterGetDNISListResponse or ErrorResponse.
Attributes:
service_user_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the GroupCallCenterGetDNISListResponse. Contains a table with column headings: "Name", "Phone Number", "Extension", "Priority", "Is Primary DNIS".
Attributes:
display_dnis_number (bool):
display_dnis_name (bool):
promote_calls_from_priority1to0 (bool):
promote_calls_from_priority2to1 (bool):
promote_calls_from_priority3to2 (bool):
promote_calls_from_priority1to0_seconds (int):
promote_calls_from_priority2to1_seconds (int):
promote_calls_from_priority3to2_seconds (int):
dnis_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
122644 122645 122646 122647 122648 122649 122650 122651 122652 122653 122654 122655 122656 122657 122658 122659 122660 122661 122662 122663 122664 122665 122666 122667 122668 122669 122670 122671 122672 122673 122674 122675 122676 122677 122678 122679 122680 122681 122682 122683 122684 122685 122686 122687 122688 122689 122690 122691 122692 122693 122694 122695 122696 122697 122698 122699 | |
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import GroupCallCenterGetDNISListRequest
client = Client()
command = GroupCallCenterGetDNISListRequest(
service_user_id=...,
)
response = client.command(command)
print(response)