GroupCollaborateBridgeAddInstanceRequest20sp1
Bases: OCIRequest
Add a collaborate bridge to a group. The domain is required in the serviceUserId. The request fails when supportOutdial is enabled and the system-level collaborate supportOutdial setting is disabled. The response is either SuccessResponse or ErrorResponse.
Attributes:
service_provider_id (str):
group_id (str):
service_user_id (str):
service_instance_profile (ServiceInstanceAddProfile):
maximum_bridge_participants (CollaborateBridgeMaximumParticipants):
network_class_of_service (Optional[str]):
max_collaborate_room_participants (int):
support_outdial (bool):
collaborate_owner_user_id (Optional[List[str]]):
Source code in src/mercury_ocip/commands/commands.py
42303 42304 42305 42306 42307 42308 42309 42310 42311 42312 42313 42314 42315 42316 42317 42318 42319 42320 42321 42322 42323 42324 42325 42326 42327 42328 42329 42330 42331 42332 42333 42334 42335 42336 42337 42338 42339 42340 42341 42342 42343 42344 42345 42346 42347 42348 42349 42350 42351 42352 42353 42354 42355 42356 42357 42358 | |
Responses
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import GroupCollaborateBridgeAddInstanceRequest20sp1
client = Client()
command = GroupCollaborateBridgeAddInstanceRequest20sp1(
service_provider_id=...,
group_id=...,
service_user_id=...,
service_instance_profile=...,
maximum_bridge_participants=...,
network_class_of_service=...,
max_collaborate_room_participants=...,
support_outdial=...,
collaborate_owner_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("GroupCollaborateBridgeAddInstanceRequest20sp1",
service_provider_id=...,
group_id=...,
service_user_id=...,
service_instance_profile=...,
maximum_bridge_participants=...,
network_class_of_service=...,
max_collaborate_room_participants=...,
support_outdial=...,
collaborate_owner_user_id=...,
)
print(response)