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
| Field | Type | Required | Description |
|---|---|---|---|
eventType | string | yes | Always "Test" |
data | object | yes | Test event data |
data.id | string (UUID) | yes | Unique test event identifier |
Example
{
"eventType": "Test",
"data": {
"id": "12345678-1234-1234-1234-123456789abc"
}
}