Skip to main content

Settlement Reports

These endpoints allow you to view a list of payout summaries or a detailed report of an individual payout.

Endpoint

GET https://gateway.sezzle.com/v2/settlements/summaries

Request Parameters

Query ParameterRequiredDescription
start-datetrueThe UTC start date for the report. Must be in yyyy-mm-dd format.
end-datefalseThe UTC end date for the report. Must be in yyyy-mm-dd format. If omitted, will default to the current date.
offsetfalseThe offset for the report. Limit is 20.
currency-codefalseThe ISO-4217 currency code selected by users at checkout. If omitted, will default to USD.

Example Settlement Summaries Response

[
{
"uuid": "b7916fbe-f30a-4435-b411-124634287a8ca",
"payout_currency": "USD",
"payout_date": "2019-12-09T15:52:33Z",
"net_settlement_amount": 9370,
"forex_fees": 0,
"status": "Complete"
},
{
"uuid": "c51343hba-d54b-5641-e341-15235523b3at",
"payout_currency": "USD",
"payout_date": "2019-12-10T15:52:33Z",
"net_settlement_amount": 23470,
"forex_fees": 0,
"status": "Complete"
}
]
info

If your store accepts multiple currencies, you will need to request settlement summaries for each supported currency. If currency code is not provided in the request, the default currency will be USD.