Supercheck LogoSupercheck
Notifications API

Send a test notification

Send a test notification to verify provider configuration before saving.

POST
/api/notification-providers/test

Authorization

bearerAuth
AuthorizationBearer <token>

CLI token (sck_live_*) for full API access, or trigger key (sck_trigger_* / legacy job_*) for job trigger endpoint only.

In: header

Request Body

application/json

type*string
Value in"email" | "slack" | "webhook" | "telegram" | "discord" | "teams"
config*object

Response Body

application/json

application/json

curl -X POST "https://demo.supercheck.dev/api/notification-providers/test" \  -H "Content-Type: application/json" \  -d '{    "type": "email",    "config": {}  }'
{
  "success": true,
  "message": "string",
  "error": "string"
}
{
  "error": "Unauthorized"
}