GroupAutoAttendantAddInstanceRequest20
Bases: OCIRequest
Add a Auto Attendant instance to a group. The domain is required in the serviceUserId. Only Group and Enterprise level schedules are accepted. The response is either SuccessResponse or ErrorResponse.
The following elements are only used in AS data mode:
type, use AutoAttendantType.BASIC in XS mode.
holidayMenu.
The following elements are only valid for Standard Auto
Attendants:
holidayMenu
Attributes:
service_provider_id (str):
group_id (str):
service_user_id (str):
service_instance_profile (ServiceInstanceAddProfile):
type (str):
first_digit_timeout_seconds (int):
enable_video (bool):
business_hours (Optional[TimeSchedule]):
holiday_schedule (Optional[HolidaySchedule]):
extension_dialing_scope (str):
name_dialing_scope (str):
name_dialing_entries (str):
business_hours_menu (Optional[AutoAttendantAddMenu20]):
after_hours_menu (Optional[AutoAttendantAddMenu20]):
holiday_menu (Optional[AutoAttendantAddMenu20]):
network_class_of_service (Optional[str]):
Source code in src/mercury_ocip_fast/commands/commands.py
33382 33383 33384 33385 33386 33387 33388 33389 33390 33391 33392 33393 33394 33395 33396 33397 33398 33399 33400 33401 33402 33403 33404 33405 33406 33407 33408 33409 33410 33411 33412 33413 33414 33415 33416 33417 33418 33419 33420 33421 33422 33423 33424 33425 33426 33427 33428 33429 33430 33431 33432 33433 33434 33435 33436 33437 33438 33439 33440 33441 33442 33443 33444 33445 33446 33447 33448 33449 33450 33451 33452 33453 33454 33455 33456 33457 33458 33459 33460 33461 33462 33463 33464 33465 33466 33467 33468 33469 33470 33471 33472 33473 33474 33475 33476 33477 33478 | |
Responses
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import GroupAutoAttendantAddInstanceRequest20
client = Client()
command = GroupAutoAttendantAddInstanceRequest20(
service_provider_id=...,
group_id=...,
service_user_id=...,
service_instance_profile=...,
type=...,
first_digit_timeout_seconds=...,
enable_video=...,
business_hours=...,
holiday_schedule=...,
extension_dialing_scope=...,
name_dialing_scope=...,
name_dialing_entries=...,
business_hours_menu=...,
after_hours_menu=...,
holiday_menu=...,
network_class_of_service=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip_fast.client import Client
client = Client()
response = client.raw_command("GroupAutoAttendantAddInstanceRequest20",
service_provider_id=...,
group_id=...,
service_user_id=...,
service_instance_profile=...,
type=...,
first_digit_timeout_seconds=...,
enable_video=...,
business_hours=...,
holiday_schedule=...,
extension_dialing_scope=...,
name_dialing_scope=...,
name_dialing_entries=...,
business_hours_menu=...,
after_hours_menu=...,
holiday_menu=...,
network_class_of_service=...,
)
print(response)