List reserved funds
GET/openapi/2025-06/shoplazza-payment/reserved-fund/details
Returns a paginated list of reserved-fund 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 reserved-fund account. Defaults to the merchant's default currency. Must match the specified region
Filter reserved-fund records created at or after this Unix timestamp (e.g., 1730548810)
Filter reserved-fund 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 reserved-fund detail records
Store ID associated with the reserve fund
Currency of payment amount
Transaction ID for the reserve fund
Payment amount associated with the reserve
Amount reserved for the transaction
Creation time of payment related to reserve (unix timestamp)
Merchant ID associated with the reserve
Currency of reserve amount
Settlement time of reserve (unix timestamp)
Cursor for pagination
Whether there are more records
{
"code": "string",
"message": "string",
"data": {
"list": [
{
"store_id": "string",
"pay_currency": "string",
"transaction_id": "string",
"pay_amount": "string",
"reserve_amount": "string",
"pay_created_at": "string",
"merchant_id": "string",
"reserve_currency": "string",
"settlement_at": "string"
}
],
"cursor": "string",
"has_more": true
}
}