List settlements
GET/openapi/2026-07/shoplazza-payment/settlements/details
Returns a paginated list of settlement detail records, optionally filtered by transaction type, currency, region, and settlement time range.
Request
Query Parameters
payment: payment settlementreserve_release: scheduled release of reserved fundschargeback: chargeback debitchargeback_win: chargeback won; funds credited backrefund: refund settlementrefund_reversal: reversal of a previous refundship_ins_comm_transfer: shipping insurance commission transferred inship_ins_comm_reversal: reversal of a shipping insurance commission transferadjustment: manual or system settlement adjustmentdebit_negative_balance: debit to cover a negative balancedebit_negative_balance_reversal: reversal of a negative-balance debit
Cursor for pagination
Page size (1-100, default 10)
Type of settlement transaction to filter by:
Currency of the settlement account. Defaults to the merchant's default currency. Must match the specified region
Filter settlements initiated at or after this Unix timestamp (e.g., 1730548810)
Filter settlements initiated at or before this Unix timestamp (e.g., 1730548810)
Region of the merchant account (e.g., US, HK). Defaults to the merchant's default region
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
- Array [
- ]
error code
error message
data object
list object[]
List of settlement detail records
Store ID associated with the settlement
Currency of the settlement account
Transaction type. Refer to valid trans_type values in the request parameters
Unique transaction ID for the settlement
Fee amount associated with the transaction
Total settlement amount
Reserve amount for the transaction
Settlement time in Unix timestamp format
Merchant ID associated with the settlement
Cursor for pagination
Whether there are more records
{
"code": "string",
"message": "string",
"data": {
"list": [
{
"store_id": "string",
"currency": "string",
"trans_type": "string",
"trans_id": "string",
"fee_amount": "string",
"settlement_amount": "string",
"reserve_amount": "string",
"settlement_time": "string",
"merchant_id": "string"
}
],
"cursor": "string",
"has_more": true
}
}