UserCallCenterAgentDetailsGetRequest
Bases: OCIRequest
Request to get the detail information of a Call Center Agent. Administrator, supervisor and agent itself can send this command. The response is either UserCallCenterAgentDetailsGetResponse or ErrorResponse.
Attributes:
agent_user_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the UserCallCenterAgentDetailsGetRequest. Contains the detail information for a Call Center Agent.
Attributes:
is_call_center_basic_assigned (bool):
is_call_center_standard_assigned (bool):
is_call_center_premium_assigned (bool):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import UserCallCenterAgentDetailsGetRequest
client = Client()
command = UserCallCenterAgentDetailsGetRequest(
agent_user_id=...,
)
response = client.command(command)
print(response)