版本:202607
查询一次性应用收费列表
GET/openapi/2026-07/application_charges
分页查询当前店铺的一次性应用收费列表。
请求
Query参数
pending: 待处理accepted: 已接受declined: 已拒绝active: 激活中expired: 已过期frozen: 已冻结cancelled: 已取消paid_failed: 支付失败paying: 支付中
cursor string
分页游标
page_size int32
每页记录数,默认 8
charges_status string
按收费状态过滤:
响应
- 200
OK
- application/json
- 数据结构
- 示例
数据结构
- Array [
- ]
codestring
错误码
messagestring
错误信息
data object
application_charges object[]
应用收费列表
idstring
应用收费 ID
namestring
向商家展示的收费名称
pricestring
收费金额
confirm_urlstring
用于跳转商家确认此次收费的 URL
return_urlstring
商家确认收费后返回的 URL
statusstring
应用收费的当前状态
testboolean
是否为测试收费
created_atstring
创建时间,ISO-8601 格式
updated_atstring
最后更新时间,ISO-8601 格式
cursorstring
分页游标
has_moreboolean
是否有更多记录
{
"code": "string",
"message": "string",
"data": {
"application_charges": [
{
"id": "string",
"name": "string",
"price": "string",
"confirm_url": "string",
"return_url": "string",
"status": "string",
"test": true,
"created_at": "string",
"updated_at": "string"
}
],
"cursor": "string",
"has_more": true
}
}