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​
| Method | Endpoint | Description |
|---|---|---|
| GET | /menus | List all menus |
| GET | /menus/{ID} | Get menu details |
| PUT | /menus | Create 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​
- Call Control - IVR - IVR call flow actions
Documentation In Progress
This documentation is being expanded. Check back soon for complete API reference.