Skip to main content
POST
/
v1
/
monitors
/
{monitor_id}
/
test
Test monitor webhook
curl --request POST \
  --url https://api.signa.so/v1/monitors/{monitor_id}/test \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Test webhook sent successfully",
  "webhook_url": "<string>",
  "response_status": 200,
  "response_time_ms": 145
}

Authorizations

Authorization
string
header
required

Use your API key from the dashboard. Include it in the Authorization header:

Authorization: Bearer YOUR_API_KEY

Get your API key at https://signa.so/dashboard

Path Parameters

monitor_id
string
required

Monitor ID

Response

Test webhook sent

success
boolean
message
string
Example:

"Test webhook sent successfully"

webhook_url
string
response_status
integer

HTTP status code from your webhook endpoint

Example:

200

response_time_ms
integer

Response time in milliseconds

Example:

145