GET - Auto Attendant Submenu Usage

Returns the type of the specified Auto Attendant (AA) submenu. NOTE: This method does not return any usage data.

Parameters

  • service_user_id (str): The servivce user ID of the AA being queried.

  • submenu_id (str): The submenu ID of the submenu being queried.

Returns

  • List: Returns a list containing a single dict of the submenu.

How To Use:

my_api.auto_attendants.get_auto_attendant_submenus(
    service_user_id="[email protected]", 
    submenu_id="Submenu 1"
)

Example Returned Data (Formatted)

[
    {
        "type": "Business Hours Menu",
        "submenuId": null
    }
]

Last updated

Was this helpful?