Skip to main content
POST
/
webhooks
/
{webhook_id}
/
test
Test webhook
curl --request POST \
  --url https://api.struct.to/v1/webhooks/{webhook_id}/test
{
  "success": true,
  "duration_ms": 1,
  "status_code": 1,
  "error": "<string>"
}

Path Parameters

webhook_id
string
required

Webhook UUID

Response

Test delivery completed

Test webhook response

success
boolean
required

Whether the test delivery succeeded

duration_ms
integer<int64>
required

Delivery duration in milliseconds

Required range: x >= 0
status_code
integer<int32> | null

HTTP status code from the endpoint

Required range: x >= 0
error
string | null

Error message if failed

Last modified on March 17, 2026