GroupCallCenterGetUnlicensedAgentListRequest
Bases: OCIRequest
Get a list of unlicensed users who are preventing the Call Center from upgrading to another type. The response is either GroupCallCenterGetUnlicensedAgentListRequest or ErrorResponse.
Attributes:
service_user_id (str):
call_center_type (str):
Source code in src/mercury_ocip/commands/commands.py
| @dataclass(kw_only=True)
class GroupCallCenterGetUnlicensedAgentListRequest(OCIRequest):
"""Get a list of unlicensed users who are preventing the Call Center from upgrading to another type.
The response is either GroupCallCenterGetUnlicensedAgentListRequest or ErrorResponse.
Attributes:
service_user_id (str):
call_center_type (str):
"""
service_user_id: str = field(metadata={"alias": "serviceUserId"})
call_center_type: str = field(metadata={"alias": "callCenterType"})
|
Responses
Bases: OCIResponseSource code in src/mercury_ocip/commands/base_command.py
| class ErrorResponse(OCIResponse):
errorCode: Optional[int] = None
summary: str
summaryEnglish: str
detail: Optional[str] = None
|
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import GroupCallCenterGetUnlicensedAgentListRequest
client = Client()
command = GroupCallCenterGetUnlicensedAgentListRequest(
service_user_id=...,
call_center_type=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip.client import Client
client = Client()
response = client.raw_command("GroupCallCenterGetUnlicensedAgentListRequest",
service_user_id=...,
call_center_type=...,
)
print(response)