GET - Auto Attendant Submenus

Returns a list of the submenus of the specified Auto Attendant (AA). Works with Standard AAs only, basic AAs do not have submenus.

Parameters

  • service_user_id (str): The service user ID of the AA.

Returns

  • List: Returns a list of the submenus associated with the AA.

How To Use:

my_api.auto_attendants.get_auto_attendant_submenus(
    service_user_id="[email protected]"
)

Example Returned Data (Formatted)

[
    {
        "submenuId": "Submenu 1",
        "isUsed": false,
        "serviceUserId": "[email protected]"
    },
    {
        "submenuId": "Submenu 2",
        "isUsed": false,
        "serviceUserId": "[email protected]"
    }
]

Last updated

Was this helpful?