# 交易退款列表查询

# 调用方式: GET

# 接口地址:

https://api.freelog.com/v3/transactions/refund/records
1

# url传入参数说明:

参数 必选 类型及范围 说明
transactionRecordId 必选 string 交易记录ID

# 返回说明:

返回值字段 字段类型 字段说明
id string 退款记录ID
paymentId string 支付记录ID
transactionRecordId string 交易记录ID
transactionAmount number 交易金额
refundAmount number 退款金额
transactionDate date 交易日期
transactionStatus string P:处理中 S:退款成功 F:退款失败
isRefundFeeFlag string 是否退还交易手续费
remark string 退款备注
transactionInitiationDate date 退款发起时间
transactionCompleteDate date 退款完成时间

# 返回示例:

{
    "ret": 0,
    "errCode": 0,
    "data": [
        {
            "id": "793659240564953088",
            "paymentId": "793659209082507264",
            "transactionRecordId": "793659239646400512",
            "transactionAmount": 0.01,
            "refundAmount": 0.01,
            "transactionStatus": "S",
            "isRefundFeeFlag": "Y",
            "remark": "合约当前状态无法接受交易事件,交易退款",
            "transactionInitiationDate": "2025-12-18T07:51:04.093Z",
            "transactionCompleteDate": "2025-12-18T07:53:04.000Z"
        }
    ],
    "msg": "success"
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19