Skip to content

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
@dataclass(kw_only=True)
class GroupRoutePointQueueCallDispositionCodeGetListRequest(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):

    """

    service_user_id: str = field(metadata={"alias": "serviceUserId"})

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
@dataclass(kw_only=True)
class GroupRoutePointQueueCallDispositionCodeGetListResponse(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):

    """

    disposition_codes_table: OCITable = field(
        metadata={"alias": "dispositionCodesTable"}
    )

Bases: OCIResponse

Source 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 GroupRoutePointQueueCallDispositionCodeGetListRequest

client = Client()

command = GroupRoutePointQueueCallDispositionCodeGetListRequest(
    service_user_id=...,
)

response = client.command(command)

print(response)

Example 2 with Raw Command

from mercury_ocip.client import Client

client = Client()

response = client.raw_command("GroupRoutePointQueueCallDispositionCodeGetListRequest",
    service_user_id=...,
)

print(response)