Skip to content

UserMeetMeConferencingGetBridgeListRequest

Bases: OCIRequest

Get the list of Meet-Me Conferencing bridges for which the user is a host. The response is either UserMeetMeConferencingGetBridgeListResponse or ErrorResponse.

Attributes:

user_id (str):
Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class UserMeetMeConferencingGetBridgeListRequest(OCIRequest):
    """Get the list of Meet-Me Conferencing bridges for which the user is a host.
        The response is either UserMeetMeConferencingGetBridgeListResponse or ErrorResponse.

    Attributes:

        user_id (str):

    """

    user_id: str = field(metadata={"alias": "userId"})

Responses

Bases: OCIDataResponse

Response to the UserMeetMeConferencingGetBridgeListRequest. Contains a table with column headings: "Bridge Id", "Name", "Phone Number", "Extension", "Ports", "Is Active", "Allow Individual OutDial", "Country Code", and "National Prefix". The column values for "Is Active" can either be true, or false.

Attributes:

conference_bridge_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class UserMeetMeConferencingGetBridgeListResponse(OCIDataResponse):
    """Response to the UserMeetMeConferencingGetBridgeListRequest.
        Contains a table with column headings: \"Bridge Id\", \"Name\", \"Phone Number\", \"Extension\", \"Ports\", \"Is Active\",
        \"Allow Individual OutDial\", \"Country Code\", and \"National Prefix\".
        The column values for \"Is Active\" can either be true, or false.

    Attributes:

        conference_bridge_table (OCITable):

    """

    conference_bridge_table: OCITable = field(
        metadata={"alias": "conferenceBridgeTable"}
    )

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 UserMeetMeConferencingGetBridgeListRequest

client = Client()

command = UserMeetMeConferencingGetBridgeListRequest(
    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("UserMeetMeConferencingGetBridgeListRequest",
    user_id=...,
)

print(response)