Receive voice phone calls for backup job failures, warnings and critical events. No waiting for email or SMS — the alert reaches your phone instantly.
The Veeam backup job failed at 2:00 AM. Email was not read. You arrived at work at 9:00 AM, the maintenance window passed, and data has been unprotected for 7 hours.
There's no ready-made solution worldwide for Veeam backup alert notification, voice warning or backup failed phone call — Alertalk was built to fill this gap.
Scenario: Production SQL Server backup has been failing for 3 days. Veeam email notifications are going to the spam folder. You don't notice. When a disk failure occurs, you have no backup.
A backup job fails, generates a warning or a critical event occurs. Veeam's Post-Job Script feature kicks in.
The ready-made PowerShell script sends an HTTP POST to the Alertalk webhook URL. Job name, status and error message are automatically transmitted.
Alertalk calls you. The voice message announces the job name and error status. You are notified within seconds. 2:00 AM doesn't matter.
Configurable for all critical events including Veeam backup voice alert, backup failed alarm and backup warning notifications:
Add the following PowerShell code to Veeam's Post-Job Script feature. Get your webhook key from the dashboard.
$webhookKey = "YOUR_WEBHOOK_KEY"
$webhookUrl = "https://tr.alertalk.net/webhook/$webhookKey"
$jobName = $args[0] # Veeam job adı
$jobResult = $args[1] # Success / Warning / Failed
# Sadece hata veya uyarıda çal
if ($jobResult -ne "Success") {
$body = @{
message = "Veeam backup $jobResult: $jobName"
} | ConvertTo-Json
Invoke-RestMethod -Uri $webhookUrl `
-Method POST `
-ContentType "application/json" `
-Body $body
}
💡 See the integration guide to download the complete, tested script.
Register with Alertalk, upgrade to the WebApi plan and get your webhook key. Add the ready-made PowerShell script to Veeam's Post-Job Script field. The next backup failure will call your phone immediately. See the Veeam integration guide for step-by-step setup.
Works with all versions of Veeam Backup & Replication v9 and above. Compatible with any Veeam environment that supports Post-Job Script and PowerShell.
You can configure the condition in the script as you like. You can receive alerts for Failed only, Warning only, or both. You can even trigger for every status except Success.
The webhook feature is active on the WebApi plan and above. Starting from ₺59/month. You can register with the Free plan first to get familiar with the system, then upgrade.
Yes. You can add multiple contacts from the Alertalk dashboard and use alert routing to specify who each alarm calls individually. Ideal for on-call rotation systems.
Setup is completed in 10 minutes. You can run the first voice alert test immediately.
📞 Get Started FreeNo credit card required · WebApi plan required for webhooks