Sezzle · Example Payload

Session Response

Buy Now Pay LaterBNPLPaymentsInstallmentsFintechMerchant IntegrationCheckout

Session Response is an example object payload from Sezzle, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

uuidlinksordertokenize

Example Payload

Raw ↑
{
  "uuid": "session-uuid-abc123",
  "links": [
    {
      "href": "https://gateway.sezzle.com/v2/session/session-uuid-abc123",
      "method": "GET",
      "rel": "self"
    }
  ],
  "order": {
    "uuid": "order-uuid-xyz789",
    "checkout_url": "https://checkout.sezzle.com/checkout/order-uuid-xyz789",
    "links": [
      {
        "href": "https://gateway.sezzle.com/v2/order/order-uuid-xyz789",
        "method": "GET",
        "rel": "self"
      }
    ]
  },
  "tokenize": {
    "token": "tok_abc123",
    "expiration": "2027-06-13T00:00:00Z",
    "links": []
  }
}