EnterpriseCallCenterGetRequest23
Bases: OCIRequest
Request the enterprise level data associated with Call Center. The response is either an EnterpriseCallCenterGetResponse23 or an ErrorResponse.
Attributes:
service_provider_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to EnterpriseCallCenterGetRequest23.
The following elements are only used in AS data mode and not returned in XS data mode:
useSystemDefaultUnavailableSettings
forceAgentUnavailableOnDNDActivation
forceAgentUnavailableOnPersonalCalls
forceAgentUnavailableOnBouncedCallLimit
numberConsecutiveBouncedCallsToForceAgentUnavailable
forceAgentUnavailableOnNotReachable
wrapUpDestination
Attributes:
use_system_default_guard_timer (bool):
enable_guard_timer (bool):
guard_timer_seconds (int):
use_system_default_unavailable_settings (Optional[bool]):
force_agent_unavailable_on_dnd_activation (Optional[bool]):
force_agent_unavailable_on_personal_calls (Optional[bool]):
force_agent_unavailable_on_bounced_call_limit (Optional[bool]):
number_consecutive_bounced_calls_to_force_agent_unavailable (Optional[int]):
force_agent_unavailable_on_not_reachable (Optional[bool]):
wrap_up_destination (Optional[str]):
Source code in src/mercury_ocip/commands/commands.py
118510 118511 118512 118513 118514 118515 118516 118517 118518 118519 118520 118521 118522 118523 118524 118525 118526 118527 118528 118529 118530 118531 118532 118533 118534 118535 118536 118537 118538 118539 118540 118541 118542 118543 118544 118545 118546 118547 118548 118549 118550 118551 118552 118553 118554 118555 118556 118557 118558 118559 118560 118561 118562 118563 118564 118565 118566 118567 118568 118569 118570 118571 118572 118573 118574 118575 118576 118577 118578 118579 118580 118581 118582 | |
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import EnterpriseCallCenterGetRequest23
client = Client()
command = EnterpriseCallCenterGetRequest23(
service_provider_id=...,
)
response = client.command(command)
print(response)