Skip to main content
GET
/
notifications
/
channels
curl "https://kodostatus.com/api/v1/notifications/channels" \
  -H "X-API-Key: your_api_key"
{
  "channels": [
    {
      "id": "uuid",
      "type": "slack",
      "name": "Engineering Alerts",
      "enabled": true,
      "config": { "webhook_url": "https://hooks.slack.com/..." }
    },
    {
      "id": "uuid",
      "type": "email",
      "name": "On-call Team",
      "enabled": true,
      "config": { "emails": ["[email protected]"] }
    }
  ]
}

Response

channels
array
curl "https://kodostatus.com/api/v1/notifications/channels" \
  -H "X-API-Key: your_api_key"
{
  "channels": [
    {
      "id": "uuid",
      "type": "slack",
      "name": "Engineering Alerts",
      "enabled": true,
      "config": { "webhook_url": "https://hooks.slack.com/..." }
    },
    {
      "id": "uuid",
      "type": "email",
      "name": "On-call Team",
      "enabled": true,
      "config": { "emails": ["[email protected]"] }
    }
  ]
}