对账查询

内测联调中,请勿对接

请求地址

环境名称
URL

SandBox

POST https://api.supefina.tech/api/supefina/transactions/search-reconciliation

正式环境

POST https://api.supefina.net/api/supefina/transactions/search-reconciliation

请求参数

Key
Value

Content-Type

application/json

请求体

变量名
必填
类型
描述

merId

String

商户ID 商户ID获取路径:Supefina商户后台-商户管理-基本信息-商户ID

countryId

String

国家编号 参照:字典表-国家编号 墨西哥:MEX

pageNo

int

当前页

pageSize

int

每页大小

transTime

String

交易时间。格式:yyyyMMdd

transactionType

String

交易类型。01代收,02代付

请求示例

{
    "countryId": "MEX",			
    "merId": "8101930582444795",	
    "pageNo": "1",				
    "pageSize": "100",
    "sign": "C4E3529DA55FD69D79449F3918B19493",
    "transTime": "20250902",	
    "transactionType": "02"		
}

签名组装字符串

响应参数

变量名
类型
描述

code

String

响应编码 具体参照:响应状态码

msg

String

响应信息

data

Object

响应数据

pageNo

int

当前页

pageSize

int

分页大小

total

int

总分页数

list

list

分页数据结果集

transTime

String

交易时间。格式:yyyy-mm-dd HH:mm:ss

transactionType

String

01:代收 02:代付

merId

String

商户ID

merOrderNo

String

商户订单号

supefinaOrderId

String

supefina订单号

transactionStatus

String

orderAmount

BigDecimal

订单金额

realityAmount

BigDecimal

实收金额

fee

BigDecimal

预收手续费

realityFee

BigDecimal

实收手续费

响应示例

{
    "code": "200",
    "msg": "success ",
    "data": {
        "pageNo": 1,				
        "pageSize": 100,			
        "total": 1,					
        "list": [
            {
                "transDate": "2025-09-01 07:51:41",
                "transTime": "2025-09-01 07:51:41",	
                "transactionType": "02",
                "merId": "8101930582444795",
                "merOrderNo": "R20250901183100001",	
                "supefinaOrderId": "2025090105020150525a9039dcd4c",	
                "transactionStatus": "01",			
                "orderAmount": "9800.00",			
                "realityAmount": "9800.00",			
                "fee": "990.00",					
                "realityFee": "990.00"				
            },
            {
                "transDate": "2025-09-01 07:52:57",
                "transTime": "2025-09-01 07:52:57",
                "transactionType": "02",
                "merId": "8101930582444795",
                "merOrderNo": "R20250901183100002",
                "supefinaOrderId": "202509010502015cb7a55e4872340",
                "transactionStatus": "01",
                "orderAmount": "4690.00",
                "realityAmount": "4690.00",
                "fee": "479.00",
                "realityFee": "479.00"
            }
        ]
    }
}

最后更新于