GroupFindMeFollowMeAddAlertingGroupRequest
Bases: OCIRequest
Add an alerting group to a Find-me/Follow-me instance. The response is either SuccessResponse or ErrorResponse.
Attributes:
service_user_id (str):
alerting_group_name (str):
alerting_group_description (Optional[str]):
use_diversion_inhibitor (bool):
answer_confirmation_required (bool):
number_of_rings (int):
phone_number (Optional[str]):
user_id (Optional[str]):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import GroupFindMeFollowMeAddAlertingGroupRequest
client = Client()
command = GroupFindMeFollowMeAddAlertingGroupRequest(
service_user_id=...,
alerting_group_name=...,
alerting_group_description=...,
use_diversion_inhibitor=...,
answer_confirmation_required=...,
number_of_rings=...,
phone_number=...,
user_id=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip_fast.client import Client
client = Client()
response = client.raw_command("GroupFindMeFollowMeAddAlertingGroupRequest",
service_user_id=...,
alerting_group_name=...,
alerting_group_description=...,
use_diversion_inhibitor=...,
answer_confirmation_required=...,
number_of_rings=...,
phone_number=...,
user_id=...,
)
print(response)