v1
latestOpenAPI 3.0.02026-07-26117198177.4 KBChannels
Create a channel
Creates a single channel for your workspace. Slack, Discord, and generic webhooks require params.webhook_url; PagerDuty requires params.routing_key; Email requires params.recipients (array of addresses); incident.io requires params.url; Telegram params are generated server-side.
post/v1/risk/channels
Request body
Example request
{
"name": "My Slack Channel",
"type": "slack",
"params": {
"webhook_url": "https://hooks.slack.com/services/T00/B00/xxxx"
}
}Response
Example response
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"workspace_id": "workspace-123",
"name": "My Slack Channel",
"type": "slack",
"enabled": true,
"connected": true,
"created_at": "2026-05-14T12:00:00.000Z",
"params": {
"webhook_url": "https://hooks.slack.com/services/T00/B00/xxxx"
},
"updated_at": "2026-05-14T12:00:00.000Z"
}