GroupRoutePointQueueCallDispositionCodeGetListRequest
Bases: OCIRequest
Get the list of Route Point Level and Organization Level Call Disposition Codes. The response is either GroupRoutePointQueueCallDispositionCodeGetListResponse or ErrorResponse.
Attributes:
service_user_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the GroupRoutePointQueueCallDispositionCodeGetListRequest. Contains a table with column headings: "Is Active", "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/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import GroupRoutePointQueueCallDispositionCodeGetListRequest
client = Client()
command = GroupRoutePointQueueCallDispositionCodeGetListRequest(
service_user_id=...,
)
response = client.command(command)
print(response)