Get a List of Merchants
Endpoint Information
Query Parameters
Response Structure
{
"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 merchants)
{
"merchantId": 1, // (number: id of the merchant)
"country": "Mexico", // (string: name of the country)
"merchantName": "Rrturo Tellez", // (string: name of the merchant)
"email": "[email protected]", // (string: email of the merchant)
"merchantType": 1, // (number: merchant type [1: INDIVIDUAL, 2: BUSINESS])
"status": 1, // (enum: status of the merchant [1: authenticating, 2: normal, 3: authentication failed, 4: incomplete])
"rejectReason": "", // (string: reject reason)
"upgradeMerchantLimitStatus": 1, //(enum: status of the upgrade merchant limit[1: authenticating, 2: normal, 3: authentication failed, 4: incomplete])
"upgradeMerchantLimitRejectReason": "", // (string: reject reason of upgrade merchant limit)
"dayFiatLimit": 25000.0, // (number: fiat day amount limit)
"dayFiatUsed": 0.0, // (number: fiat day amount used)
"monthFiatLimit": 25000.0, // (number: fiat month amount limit)
"monthFiatUsed": 0.0, // (number: fiat month amount used)
"monthCryptoLimit": 15000.0, // (number: crypto month amount limit)
"monthCryptoUsed": 0.0, // (number: crypto month amount used)
"remark": "", // (string: Remark)
"createTime": "1737452292000", // (string: timestamp of the create time (milliseconds))
"updateTime": "1737452344000" // (string: timestamp of the update time (milliseconds))
}
]
}
}Notes
Last updated

