Appearance
Integrations
Notifiq receives notifications via a simple HTTP POST to /api/notify. Any system that can make an HTTP request can integrate with it.
Available integrations
| Integration | Description |
|---|---|
| Checkmk | Enterprise monitoring — host and service alerts |
| Wazuh | SIEM — security alerts and rule events |
| Zabbix | Infrastructure monitoring |
| Generic | Any system via curl or HTTP client |
How integrations work
All integrations POST to the same endpoint:
POST /api/notify
Authorization: Bearer YOUR_TOKEN
Content-Type: application/json
{
"title": "...",
"message": "...",
"level": "critical|error|warning|info|success"
}The integration script's job is to translate the monitoring system's native alert format into this structure.
Rate limiting
If your monitoring system sends high volumes of alerts, add its IP to the Rate Limit Whitelist in Settings → Security to avoid hitting limits.