List payouts
GET/openapi/2025-06/shoplazza-payment/payout/details
Returns a paginated list of payout detail records, optionally filtered by currency, region, and creation time range.
Request
Query Parameters
Cursor for pagination
Page size (1-100, default 10)
Currency of the payout account. Defaults to the merchant's default currency. Must match the specified region
Filter payout records created at or after this Unix timestamp (e.g., 1730548810)
Filter payout records created 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 payout detail records
Payout record ID
Store ID associated with the payout
Creation time of the payout record (Unix timestamp)
Status of the payout record. Possible values: completed, pending, failed
Currency of the payout
Total amount of the payout
Bank name associated with the payout
Last 4 digits of the bank account number
Routing number of the bank account
Cursor for pagination
Whether there are more records
{
"code": "string",
"message": "string",
"data": {
"list": [
{
"id": "string",
"store_id": "string",
"created_at": "string",
"status": "string",
"currency": "string",
"amount": "string",
"bank_name": "string",
"last4": "string",
"routing_number": "string"
}
],
"cursor": "string",
"has_more": true
}
}