Notifications represent alert configurations and subscriptions for various events in your Cloud 66 infrastructure. They allow you to receive alerts about important system events and status changes.
Model
alert_name
stringThe name or type of the alert notification.
subscriptions
arrayAn array of subscription configurations for this alert, defining who receives notifications and how.
Example
{
"alert_name": "deployment_failure",
"subscriptions": [
{
"type": "email",
"target": "team@example.com",
"enabled": true
},
{
"type": "slack",
"target": "#alerts",
"enabled": true,
"webhook_url": "https://hooks.slack.com/services/T00000000/B00000000/XXXXXXXXXXXXXXXXXXXXXXXX"
}
]
}