Synology Webhook Notifications

Updated on March 29, 2026

Send Signalgrid push notifications from Synology DSM custom webhooks
to receive NAS alerts instantly on your iOS and Android devices.

Synology DSM can send system events to external services through its custom webhook notification feature. By pointing that webhook to the Signalgrid Push API, you can forward NAS alerts such as storage warnings, backup failures, degraded volumes, UPS events, or service notifications directly to your mobile devices.

This is a simple way to turn built-in DSM notifications into modern push alerts without running an extra relay service on your NAS.

Prerequisites

  • A Synology NAS running DSM with the Custom Webhook notification option enabled
  • A Signalgrid account
  • Your Signalgrid Client Key
  • Your Signalgrid Channel Token
  • Outbound HTTPS access from your NAS to https://api.signalgrid.co

How the Integration Works

When DSM generates a notification, Synology sends an HTTP request to the custom webhook URL you configured. That request can be sent to the Signalgrid Push API endpoint and include the values Signalgrid needs to create a notification:

Signalgrid field
Purpose
client_key
Authenticates your request
channel
Chooses the Signalgrid channel that should receive the notification
title
The push notification title shown on the device
body
The main notification content sent by DSM
type
Controls the Signalgrid notification color: INFO, WARN, SUCCESS, or CRIT
critical
Optional flag for urgent alerts that should bypass silent and DND behavior on supported devices

Signalgrid Push API Endpoint

Use the following API endpoint as the target for your Synology webhook:

https://api.signalgrid.co/v1/push

The request should be sent as an HTTP POST request.

Open the Synology Notification Settings

In DSM, open the notification settings and look for the Custom or Custom Webhook notification option. The exact labels can vary slightly between DSM versions, but the workflow is the same:

  • Open Settings or Control Panel
  • Go to Notifications
  • Click on webhooks
  • Create a new webhook

Recommended Synology Webhook Configuration

DSM field
Value
URL
https://api.signalgrid.co/v1/push
Method
POST
Content-Type
application/x-www-form-urlencoded
Authentication header
Not required when you send client_key in the request body

Example Request Body

A simple DSM webhook body can look like this:

client_key=YOUR_CLIENT_KEY&channel=YOUR_CHANNEL_TOKEN&type=WARN&title=Synology NAS Alert&body=DSM generated a new notification

This example sends every Synology event as a WARN notification. That is usually a good default for infrastructure notifications coming from a NAS.

Using DSM Notification Variables

Many DSM versions allow event-specific variables to be inserted into the webhook payload. If your DSM interface exposes variables for the event title, subject, hostname, severity, or message text, place those values into the Signalgrid title and body fields.

The exact variable names depend on the DSM version and the notification editor you are using, so the safest approach is:

  • Use the Synology variable picker provided in the DSM UI
  • Map the short event name to title
  • Map the detailed event message to body
  • Keep client_key and channel static

A practical finished payload often looks like this pattern:

client_key=YOUR_CLIENT_KEY&channel=YOUR_CHANNEL_TOKEN&type=WARN&title=[DSM event title variable]&body=[DSM event message variable]

Choosing the Right Notification Type

If Synology does not let you dynamically map severities, choose a fixed Signalgrid type that matches the purpose of the webhook:

Signalgrid type
Recommended use
INFO
General NAS events, completed tasks, low-priority notices
WARN
Most system warnings, degraded-but-not-failed states, backup warnings
SUCCESS
Successful backup completion, replication completion, maintenance finished
CRIT
Disk failure, storage pool failure, UPS critical state, major service outage

Using Critical Notifications Carefully

If you want truly urgent NAS problems to break through silent mode, add critical=true to the request body:

client_key=YOUR_CLIENT_KEY&channel=YOUR_CHANNEL_TOKEN&type=CRIT&critical=true&title=Storage pool degraded&body=Immediate attention is required on your Synology NAS

Only use this for important incidents. If every DSM event is sent as critical, the integration becomes noisy and people start ignoring it.

Create Separate Webhooks for Different Event Classes

If your DSM version lets you configure more than one custom notification rule, it is worth separating them by severity:

  • One webhook for regular system notifications using type=INFO or type=WARN
  • One webhook for critical storage or hardware alerts using type=CRIT and critical=true
  • Optional success-focused webhooks for backup completion or automation jobs using type=SUCCESS

This keeps your Signalgrid channel much easier to scan and prevents normal events from looking like emergencies.

Testing the Integration

After saving the Synology custom webhook, use the DSM test function if it is available. You should receive a Signalgrid notification on every device subscribed to the selected channel.

If DSM does not provide a test button for your webhook screen, you can verify the same payload manually with curl from another machine:

curl -X POST https://api.signalgrid.co/v1/push \
    -d "client_key=YOUR_CLIENT_KEY" \
    -d "channel=YOUR_CHANNEL_TOKEN" \
    -d "type=WARN" \
    -d "title=Synology test notification" \
    -d "body=This is a manual test for the DSM webhook integration"

Troubleshooting

Problem
What to check
No notification arrives
Verify the client_key, channel, and outbound HTTPS access from the NAS
Webhook test fails in DSM
Confirm the URL is exactly https://api.signalgrid.co/v1/push and the request method is POST
Notification arrives without useful text
Replace the static title and body values with the event variables offered by DSM
Everything looks critical
Remove critical=true and use a softer type such as WARN for normal alerts

Related Documentation