GroupInstantGroupCallAddInstanceRequest14
Bases: OCIRequest
Request to add an Instant Group Call service instance to a group. The domain is required in the serviceUserId. The response is either SuccessResponse or ErrorResponse.
Attributes:
service_provider_id (str):
group_id (str):
service_user_id (str):
service_instance_profile (ServiceInstanceAddProfile):
destination_phone_number (Optional[List[str]]):
is_answer_timeout_enabled (bool):
answer_timeout_minutes (Optional[int]):
network_class_of_service (Optional[str]):
Source code in src/mercury_ocip/commands/commands.py
50414 50415 50416 50417 50418 50419 50420 50421 50422 50423 50424 50425 50426 50427 50428 50429 50430 50431 50432 50433 50434 50435 50436 50437 50438 50439 50440 50441 50442 50443 50444 50445 50446 50447 50448 50449 50450 50451 50452 50453 50454 50455 50456 50457 50458 50459 50460 50461 50462 50463 50464 | |
Responses
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import GroupInstantGroupCallAddInstanceRequest14
client = Client()
command = GroupInstantGroupCallAddInstanceRequest14(
service_provider_id=...,
group_id=...,
service_user_id=...,
service_instance_profile=...,
destination_phone_number=...,
is_answer_timeout_enabled=...,
answer_timeout_minutes=...,
network_class_of_service=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip.client import Client
client = Client()
response = client.raw_command("GroupInstantGroupCallAddInstanceRequest14",
service_provider_id=...,
group_id=...,
service_user_id=...,
service_instance_profile=...,
destination_phone_number=...,
is_answer_timeout_enabled=...,
answer_timeout_minutes=...,
network_class_of_service=...,
)
print(response)