版本:202506
查询一次性应用收费交易列表
GET/openapi/2025-06/application_charges/:charge_id/transactions
返回指定一次性应用收费的交易历史记录。
请求
Path参数
charge_id string必填
收费 ID
Query参数
cursor string
分页游标
page_size int32
每页记录数,默认 8
paid_at_min string
按支付时间起点过滤,ISO-8601 格式(如 2018-11-02T12:30:10Z)
paid_at_max string
按支付时间终点过滤,ISO-8601 格式(如 2018-11-02T12:30:10Z)
响应
- 200
OK
- application/json
- 数据结构
- 示例
数据结构
- Array [
- ]
codestring
错误码
messagestring
错误信息
data object
transactions object[]
交易列表
idstring
交易 ID
charge_idstring
该交易所属的应用收费 ID
pricestring
交易金额
usage_pricestring
用量收费价格
statusstring
交易的当前状态
paid_atstring
交易支付时间
cursorstring
分页游标
has_moreboolean
是否有更多记录
{
"code": "string",
"message": "string",
"data": {
"transactions": [
{
"id": "string",
"charge_id": "string",
"price": "string",
"usage_price": "string",
"status": "string",
"paid_at": "string"
}
],
"cursor": "string",
"has_more": true
}
}