📖PUT - Auto Attendant Submenu

my_api.put.auto_attendant_submenu()

This method allows you to update the configuration of the submenus for your AAs. This method only allows you to update one submenu at a time but can be placed in a look to update all submenus you may have.

Parameters

  • auto_attendant_user_id (str): Service user ID of your auto attendant.

  • submenu_id (str): Service user ID of your submenu.

  • updates (dict): Updates your applying to your submenu.

Return

  • None: This method does not return any specific value.

How To Use:


my_api= api.Api(base_url="https://base_url/api/vx", username="john.smith", password="ODIN_INSTANCE_1")
my_api.authenticate()

my_changes = {
                "announcementSelection":"Personal",
                "enableLevelExtensionDialing":False,
                "keys":[
                	{"key":"0","action":"Transfer To Operator","description":"Operator","phoneNumber":2025}
                ]
            }

my_api.put.auto_attendant_submenu(
    auto_attendant_user_ids= "test@domain.com",
    submenu_id= "Test1"
    updates= my_changes
)

Result:

Last updated