GroupCollaborateBridgeGetInstanceListRequest
Bases: OCIRequest
Get a list of collaborate bridges within a group. The response is either GroupCollaborateBridgeGetInstanceListResponse or ErrorResponse. It is possible to get the instances within a specified department.
Attributes:
service_provider_id (str):
group_id (str):
department_name (Optional[str]):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the GroupCollaborateBridgeGetInstanceListRequest. Contains a table with column headings: "Service User Id", "Name", "Phone Number", "Extension", "Department", "Participants", and "Is Default". The column values for "Is default" can either be true, or false.
Attributes:
collaborate_bridge_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import GroupCollaborateBridgeGetInstanceListRequest
client = Client()
command = GroupCollaborateBridgeGetInstanceListRequest(
service_provider_id=...,
group_id=...,
department_name=...,
)
response = client.command(command)
print(response)