Skip to main content

Test Webhooks

You can trigger a test event using this endpoint. It will send the URL a mimic of the webhook event.

Endpoint

POST https://gateway.sezzle.com/v2/webhooks/test

Request Properties

ParameterRequiredTypeDescription
eventtruestringOne of the Valid Webhook Events
urlfalsestringA url to receive the test webhook. If omitted, the test webhook is sent to all urls subscribed to that event.

Valid Webhook Events

We accept the following Webhook events

EventDescription
customer.tokenizedThis webhook is called when a customer is tokenized
order.authorizedThis webhook is called when an order is authorized by Sezzle
order.capturedThis webhook is called when an order is captured by Sezzle
order.refundedThis webhook is called when an order is refunded by Sezzle

Example Request

{
"event": "order.authorized",
"url": "https://example.com/webhooks"
}
tip

There is no response body for this request. If successful, we return an HTTP 201 Status Created.