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_fast/commands/commands.py
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_fast/commands/commands.py
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import UserMeetMeConferencingGetBridgeListRequest
client = Client()
command = UserMeetMeConferencingGetBridgeListRequest(
user_id=...,
)
response = client.command(command)
print(response)