Skip to main content
POST
/
api
/
v1
/
admin
/
webhook-test
Test Webhook
curl --request POST \
  --url https://api.example.com/api/v1/admin/webhook-test \
  --header 'Authorization: Bearer <token>'
{
  "ok": true,
  "status_code": 123,
  "response_time_ms": 123,
  "error": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

Successful Response

ok
boolean
required

Whether the webhook responded with HTTP 200

status_code
integer
required

HTTP status code returned by the webhook endpoint (0 if connection failed)

response_time_ms
integer
required

Round-trip time in milliseconds

error
string | null

Error message if the request failed