Skip to main content
POST
/
api
/
v1
/
alert-channels
/
test
Test alert channel connectivity using raw config (no saved channel required)
curl --request POST \
  --url https://api.devhelm.io/api/v1/alert-channels/test \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "config": {
    "channelType": "<string>",
    "webhookUrl": "<string>",
    "mentionRoleId": "<string>"
  }
}
'
{
  "data": {
    "success": true,
    "message": "<string>"
  }
}

Authorizations

Authorization
string
header
required

API key (dh_live_...) or Auth0 JWT token

Body

application/json

Alert channel configuration to test without saving

config
object
required

New channel configuration (full replacement, not partial update)

Response

200 - */*

OK

data
object