How AMD works
Wavix AMD analyzes the initial audio of a call to distinguish between a human response and a pre-recorded voicemail message. By identifying frequency patterns and audio characteristics, the platform can detect a machine even during Early Media playback (before the final answer signal). Wavix AMD also screens for automated network announcements played during Early Media—the period before a call is technically answered. By identifying these pre-answer signals and terminating the call immediately, the Wavix platform ensures that your resources are only dedicated to successful human connections.Activation levels
You can enable AMD at two different levels depending on your integration needs:1. Trunk level (Wavix portal & Wavix Embeddable)
Recommended for calls manually placed from your PBX or third-party systems connected via SIP, as well as features built using Wavix Embeddable. For these methods, AMD is controlled globally for the specific SIP trunk:- Sign in to your Wavix account.
- In the top menu, click on Numbers & Trunks → Trunks.
- Select an existing SIP trunk to edit (or create a new one).
Wavix Embeddable uses the SIP trunk configured during your application setup.
- Scroll down to the Trunk features section.
- Toggle Voicemail detection to ON.
- Click Save and close.
2. Call level (API only)
Recommended for programmable voice applications where you want granular control over which specific calls use AMD. This is currently supported exclusively by the Calls API.Via Calls API
To enable AMD for a specific call, set thevoicemail_detection property to true in your POST /v1/calls request.
AMD events and webhooks
To receive real-time notifications about AMD results, you can configure an on-call webhook. Wavix sends a POST callback to your designated URL whenever a call event occurs, such as when a call is answered and the AMD analysis is complete.Subscribe to call events
You can create a webhook using the Create a webhook endpoint:The machine_detected event
When a call is answered and subsequently ends, Wavix triggers acompleted event callback. The JSON payload includes a machine_detected boolean field that indicates whether the call was screened by the AMD system.
Sample completed event payload:
machine_detected: true: An answering machine or voicemail was detected.machine_detected: false: A human was detected.
completed event, your application can accurately log the outcome of the call, including whether it was dismissed by AMD or successfully answered by a human.