Your API key for authentication.
Path Parameters
Body Parameters
Notification type to test. Allowed values: alarm, recovery.
Response
Whether at least one configured delivery method succeeded.
Summary of the test result.
Delivery results by channel (webhook, email, sms).
data.results.webhook.success
Whether webhook delivery succeeded.
data.results.webhook.statusCode
HTTP status returned by the webhook endpoint, when available.
data.results.email.success
Whether email delivery succeeded.
data.results.email.sentTo
Recipient list used for the test email.
null on success response, or an array with NOTIFICATION_TEST_FAILED.
{
"data": {
"success": true,
"message": "Alarm notification test completed: 2/2 methods successful",
"results": {
"webhook": {
"success": true,
"statusCode": 200
},
"email": {
"success": true,
"sentTo": ["alerts@example.com"]
}
}
},
"errors": null
}