Skip to main content
POST
/
api
/
webhooks
/
{webhook_id}
/
test
Test Webhook
curl --request POST \
  --url https://api.e-invoice.be/api/webhooks/{webhook_id}/test \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "event_type": "<string>",
  "data": {}
}
'
{
  "success": true,
  "message": "<string>",
  "webhook_delivery_result": {}
}

Authorizations

Authorization
string
header
required

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

Path Parameters

webhook_id
string
required

Body

application/json

Schema for webhook test request.

event_type
string
required

Must be valid WebhookEventType

data
Data · object
required

Custom event data payload

Response

Successful Response

Schema for webhook test response.

success
boolean
required

Whether the test completed successfully

message
string
required

Descriptive message about the test result

webhook_delivery_result
Webhook Delivery Result · object
required

Result from process_webhook_task