v2

latestOpenAPI 3.1.02026-07-264249163.7 KB
Webhooks

List webhooks

Get a list of webhooks you are subscribed to

get/v2/webhooks

Response

Successful Operation

uuidstring

The unique identifier for this response

urlstring required

The URL you are using to receive webhooks

eventsWebhookEvents[] required

An array of webhook events you wish to subscribe to

Example response

[
  {
    "uuid": "747cf28a-bb5c-46a8-a288-d9b006fd6113",
    "links": [
      {
        "href": "https://sandbox.gateway.sezzle.com/v2/webhooks",
        "rel": "create",
        "method": "POST"
      },
      {
        "href": "https://sandbox.gateway.sezzle.com/v2/webhooks",
        "rel": "list",
        "method": "GET"
      },
      {
        "href": "https://sandbox.gateway.sezzle.com/v2/webhooks/747cf28a-bb5c-46a8-a288-d9b006fd6113",
        "rel": "self",
        "method": "GET"
      },
      {
        "href": "https://sandbox.gateway.sezzle.com/v2/webhooks/747cf28a-bb5c-46a8-a288-d9b006fd6113",
        "rel": "self",
        "method": "PATCH"
      },
      {
        "href": "https://sandbox.gateway.sezzle.com/v2/webhooks/747cf28a-bb5c-46a8-a288-d9b006fd6113",
        "rel": "self",
        "method": "DELETE"
      }
    ],
    "url": "https://example.com/webhooks",
    "events": [
      "customer.tokenized"
    ]
  }
]