GroupDialableCallerIDGetRequest
Bases: OCIRequest
Get the Group's Dialable Caller ID settings and criteria list. The response is either a GroupDialableCallerIDGetResponse or an ErrorResponse.
Attributes:
service_provider_id (str):
group_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the GroupDialableCallerIDGetRequest. The criteria table's column headings are "Active", "Name", "Description", "Prefix Digits", "Priority".
Attributes:
use_group_criteria (bool):
ns_screening_failure_policy (str):
criteria_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import GroupDialableCallerIDGetRequest
client = Client()
command = GroupDialableCallerIDGetRequest(
service_provider_id=...,
group_id=...,
)
response = client.command(command)
print(response)