Skip to main content

Test

This event type is used to verify that the webhook is working correctly. It should be handled by the webhook receiver.

When a webhook secret is configured, two test events are fired: one with a valid signature and one without a valid signature. This allows you to verify that your signature validation logic correctly accepts valid requests and rejects invalid ones.

Fields

FieldTypeRequiredDescription
eventTypestringyesAlways "Test"
dataobjectyesTest event data
data.idstring (UUID)yesUnique test event identifier

Example

{
"eventType": "Test",
"data": {
"id": "12345678-1234-1234-1234-123456789abc"
}
}