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_changes = {
                "announcementSelection":"Personal",
                "enableLevelExtensionDialing":False,
                "keys":[
                	{"key":"0","action":"Transfer To Operator","description":"Operator","phoneNumber":2025}
                ]
            }

my_api.auto_attendants.put_auto_attendant_submenu(
    auto_attendant_user_ids= "[email protected]",
    submenu_id= "Test1"
    updates= my_changes
)

Result:

Last updated

Was this helpful?