Skip to main content

Menus

The Menus API allows you to create and configure IVR (Interactive Voice Response) menus and auto-attendants.

Base URL​

https://api.audian.com:8443/v2/accounts/{ACCOUNT_ID}/menus

Overview​

Menus define the structure of your auto-attendant and IVR systems. Configure greeting messages, keypress options, timeout behavior, and routing destinations.

Endpoints​

MethodEndpointDescription
GET/menusList all menus
GET/menus/{ID}Get menu details
PUT/menusCreate new menu
POST/menus/{ID}Update menu
DELETE/menus/{ID}Delete menu

List Menus​

curl -X GET "https://api.audian.com:8443/v2/accounts/{ACCOUNT_ID}/menus" \
-H "X-Auth-Token: {AUTH_TOKEN}" \
-H "Accept: application/json"

Response​

{
"auth_token": "{AUTH_TOKEN}",
"data": [],
"request_id": "{REQUEST_ID}",
"status": "success"
}

See Also​

Documentation In Progress

This documentation is being expanded. Check back soon for complete API reference.