Logo

Command Palette

Search for a command to run...

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_namestring

The name or type of the alert notification.

subscriptionsarray

An 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"
    }
  ]
}