Test Webhook

Send a test event to verify your endpoint is reachable.

POST/webhooks/endpoints/{endpoint_id}/test

Send a test event to this endpoint.

No parameters for this endpoint.


Path Parameters

ParameterTypeDescription
endpoint_idintegerWebhook endpoint ID

Response

{
  "status": "success",
  "deliveries_enqueued": 1
}

The test event payload looks like:

{
  "event": "webhook.test",
  "timestamp": "2026-03-16T10:30:00.000Z",
  "data": {
    "message": "This is a test webhook from ThinnestAI",
    "endpoint_id": 1
  }
}

Use this to verify your endpoint is reachable and your signature verification works correctly.

On this page