{
"code": 200,
"msg": "SUCCESS",
"data": {
"currentPage": 1, // (number: current page number)
"size": 10, // (number: number of results per page)
"total": 100, // (number: total number of results)
"data": [ // (array: list of merchant accounts)
{
"merchantId": 1, // (number: id of the merchant)
"fiat": "MXN", // (string: name of the fiat currency)
"balance": "100.00", // (decimal: amount of Merchant balance)
"status": 1, // (enum: status of the merchant [1: authenticating, 2: normal, 3: authentication failed, 4: incomplete])
"buyAmountLimit": "0", // (number: from amount limit of the fiat currency)
"buyAmountUsed": "2000.00", // (number: from amount used of the fiat currency)
"sellAmountLimit": "10000.00", // (number: to amount limit of the fiat currency)
"sellAmountUsed": "0", // (number: to amount used of the fiat currency)
"paymentId": 58, // (number: ID of the payment configuration)
"paymentMethodName": "Automated SPEI - Arcus", // (string: name of the payment method)
"createTime": "1737452292000", // (string: timestamp of the create time (milliseconds))
"updateTime": "1737452344000" // (string: timestamp of the update time (milliseconds))
}
]
}
}{
"code": 200,
"msg": "SUCCESS",
"data": {
"currentPage": 1,
"size": 10,
"total": 100,
"data": [
{
"merchantId": 1,
"fiat": "MXN",
"balance": "100.00",
"status": 2,
"buyAmountLimit": "0",
"buyAmountUsed": "2000.00",
"sellAmountLimit": "10000.00",
"sellAmountUsed": "0",
"paymentId": 58,
"paymentMethodName": "Automated SPEI - Arcus",
"createTime": "1737452292000",
"updateTime": "1737452344000"
},
{
"merchantId": 2,
"fiat": "ARS",
"balance": "500.00",
"status": 1,
"buyAmountLimit": "1000.00",
"buyAmountUsed": "500.00",
"sellAmountLimit": "20000.00",
"sellAmountUsed": "1000.00",
"paymentId": 63,
"paymentMethodName": "Automated Bank Transfer",
"createTime": "1737452292001",
"updateTime": "1737452344001"
}
// Additional merchant accounts may be included
]
}
}