GroupCallCenterGetInstanceQueueStatusRequest
Bases: OCIRequest
Get Call Center queue status. The response is either GroupCallCenterGetInstanceQueueStatusResponse or ErrorResponse.
Attributes:
service_user_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: "User Id", "First Name", "Last Name", "Phone Number", "Extension", "Department", "Email Address".OCIDataResponseContains Call Center queue status and a table with column headings
Attributes:
number_of_calls_queued_now (int):
agents_currently_staffed (OCITable):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import GroupCallCenterGetInstanceQueueStatusRequest
client = Client()
command = GroupCallCenterGetInstanceQueueStatusRequest(
service_user_id=...,
)
response = client.command(command)
print(response)