UserCallCenterGetSupervisorCallCenterListRequest
Bases: OCIRequest
Get a list of call centers the user is assigned to as a supervisor. The response is either a UserCallCenterGetSupervisorCallCenterListResponse or an ErrorResponse.
Attributes:
supervisor_user_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the UserCallCenterGetSupervisorCallCenterListRequest. Contains a table with column headings: "Service User Id", "Phone Number", "Extension", "Type" and "Priority".
Attributes:
call_center_table (OCITable):
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 UserCallCenterGetSupervisorCallCenterListRequest
client = Client()
command = UserCallCenterGetSupervisorCallCenterListRequest(
supervisor_user_id=...,
)
response = client.command(command)
print(response)