Test webhook delivery
Sends a test HTTP request to the webhook URL using the webhook’s configured method, headers, and auth. Returns the response from the target endpoint.
Use this to verify URL reachability and authentication before attaching the webhook to a live job or monitor.
Documentation Index
Fetch the complete documentation index at: https://newscatcherinc-docs.mintlify.dev/docs/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
API key for authentication.
Path Parameters
Unique webhook identifier.
Body
Custom payload to send in the test request. If omitted, a synthetic test payload is sent.
{
"test": true,
"message": "CatchAll webhook test"
}Response
Test delivery attempted. Check success and http_status_code for the outcome.
True if the test delivery received a 2xx response; false otherwise.
true
Human-readable result message.
"Test delivery succeeded."
HTTP status code returned by the webhook endpoint.
200
Response body returned by the webhook endpoint. Type varies by target.
"ok"

