GroupRoutePointBouncedCallGetRequest
Bases: OCIRequest
Get a route point's bounced call settings. The response is either a GroupRoutePointBouncedCallGetResponse or an ErrorResponse.
Attributes:
service_user_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the GroupRoutePointBouncedCallGetRequest.
Attributes:
is_active (bool):
number_of_rings_before_bouncing_call (int):
enable_transfer (Optional[bool]):
transfer_phone_number (Optional[str]):
bounce_call_when_agent_unavailable (bool):
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 GroupRoutePointBouncedCallGetRequest
client = Client()
command = GroupRoutePointBouncedCallGetRequest(
service_user_id=...,
)
response = client.command(command)
print(response)