Skip to main content
POST
/
api
/
v1
/
webhooks
/
{id}
/
test
Send a test delivery to a webhook endpoint
curl --request POST \
  --url https://api.devhelm.io/api/v1/webhooks/{id}/test \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "eventType": "<string>"
}
'
{
  "data": {
    "success": true,
    "statusCode": 123,
    "message": "<string>",
    "durationMs": 123
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string<uuid>
required

Body

application/json

Event type to use for a test webhook delivery

eventType
string | null

Event type to simulate (e.g. monitor.created); null uses a default

Response

200 - */*

OK

data
object