Sezzle · Schema
Customer
A Sezzle shopper/customer with personal and address details.
Buy Now Pay LaterBNPLPaymentsInstallmentsFintechMerchant IntegrationCheckout
Properties
| Name | Type | Description |
|---|---|---|
| string | Customer email address. | |
| first_name | string | Customer first name. |
| last_name | string | Customer last name. |
| phone | string | Customer phone number. |
| dob | string | Customer date of birth. |
| token_expiration | string | Expiration datetime of the customer token. |
| billing_address | object | |
| shipping_address | object |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/sezzle/main/json-schema/customer.json",
"title": "Customer",
"description": "A Sezzle shopper/customer with personal and address details.",
"type": "object",
"properties": {
"email": {
"type": "string",
"format": "email",
"description": "Customer email address."
},
"first_name": {
"type": "string",
"description": "Customer first name."
},
"last_name": {
"type": "string",
"description": "Customer last name."
},
"phone": {
"type": "string",
"description": "Customer phone number."
},
"dob": {
"type": "string",
"description": "Customer date of birth."
},
"token_expiration": {
"type": "string",
"format": "date-time",
"description": "Expiration datetime of the customer token."
},
"billing_address": {
"$ref": "https://raw.githubusercontent.com/api-evangelist/sezzle/main/json-schema/address.json"
},
"shipping_address": {
"$ref": "https://raw.githubusercontent.com/api-evangelist/sezzle/main/json-schema/address.json"
}
}
}