List Reserved fund Details
GET/openapi/2024-07/shoplazza-payment/reserved-fund/details
Return the reserve details. Objects are sorted in descending order by creation date, with the most recently created objects shown first
Request
Query Parameters
Settlement start time for reserve details (Unix timestamp)
Settlement end time for reserve details (Unix timestamp)
A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.
cursor for pagination, use the cursor from the response for pagination
Currency of the settlement account
Responses
- 200
- 422
- 500
OK
- application/json
- Schema
- Example
Schema
- Array [
- ]
error code
error message
data object
Indicator of whether there is more data for pagination
list object[]
List of reserve details
Unique identifier for the store
Currency of payment amount.
Transaction order number, applicable to all transaction types
Transaction order amount, in currency
Reserve amount for deposits
Creation time of payment related to reserve (unix timestamp)
Merchant ID
Currency of reserve amount
cursor for pagination
{
"code": "string",
"message": "string",
"data": {
"has_more": true,
"list": [
{
"store_id": "string",
"pay_currency": "string",
"transaction_id": "string",
"pay_amount": "string",
"reserve_amount": "string",
"created_at": "string",
"merchant_id": "string",
"reserve_currency": "string"
}
],
"cursor": "string"
}
}
invalid parameter
- application/json
- Schema
- Example
- Example
Schema
error code
error message
{
"code": "string",
"message": "string"
}
{
"code": "InvalidParameter",
"message": "Currency is required."
}
invalid parameter
- application/json
- Schema
- Example
- Example
Schema
error code
error message
{
"code": "string",
"message": "string"
}
{
"code": "InvalidParameter",
"message": "wrong cursor"
}