# Notification

URL: https://developers.cloud66.com/v3/models/notification/

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>
    <ModelProperty name="alert_name" type="string">
        The name or type of the alert notification.
    </ModelProperty>
    <ModelProperty name="subscriptions" type="array">
        An array of subscription configurations for this alert, defining who receives notifications and how.
    </ModelProperty>
</Model>

## Example

```json
{
  "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"
    }
  ]
}
```
