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]"] }
}
]
}
Get all configured notification 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]"] }
}
]
}
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]"] }
}
]
}