UserCallCenterCallDispositionCodeGetAvailableListRequest
Bases: OCIRequest
Get the list of available Call Center Call Disposition Codes to be used by a client. The response is either UserCallCenterCallDispositionCodeGetAvailableListResponse or ErrorResponse.
Attributes:
service_user_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the UserCallCenterCallDispositionCodeGetAvailableListRequest. This list may include Group/Enterprise level codes in addition to the Call Center level codes, depending on the call center disposition codes settings. Only active codes are included in the list. Contains a table with column headings: "Code", "Description" and "Level". Level column can be any of the values in the data type CallDispositionCodeLevel.
Attributes:
disposition_codes_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 UserCallCenterCallDispositionCodeGetAvailableListRequest
client = Client()
command = UserCallCenterCallDispositionCodeGetAvailableListRequest(
service_user_id=...,
)
response = client.command(command)
print(response)