- 原接口重写
- 订阅相关接口
- 规范申报接口
- 用户账户信息
- 支付接口
- 退款接口
- 用户消费记录查询
- 用户充值记录查询
- 广告内容
- 发票
- 档位接口
- 金币转换接口
- 意见反馈
- 全流程接口
- 报关单核验
档位查询接口
开发中
POST
https://wusan53.cn/fzx-tgb-api/rechargeDw/queryDw
请求参数
Header 参数
Content-Type
string
必需
示例值:
application/json
Body 参数application/json
id
string
可选
name
string
可选
amount
string
可选
sort
string
排序
示例
{
"id":"1716725508806381569",
"name":"10",
"amount":"10",
"sort":"AMOUNT"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://wusan53.cn/fzx-tgb-api/rechargeDw/queryDw' \
--header 'Content-Type: application/json' \
--data-raw '{
"id":"1716725508806381569",
"name":"10",
"amount":"10",
"sort":"AMOUNT"
}'
返回响应
🟢200成功
application/json
Body
code
integer
必需
success
boolean
必需
message
string
必需
timestmp
integer
必需
data
array [object {6}]
必需
id
string
必需
name
string
必需
amount
integer
必需
sort
string
必需
status
string
必 需
createTime
string
必需
示例
{
"code": 200,
"success": true,
"message": "请求成功",
"timestmp": 1699338947062,
"data": [
{
"id": "1716725508806381569",
"name": "10",
"amount": 10,
"sort": "1",
"status": "0",
"createTime": "2023-10-24 15:57:11"
},
{
"id": "1716725211589611522",
"name": "20",
"amount": 20,
"sort": "1",
"status": "0",
"createTime": "2023-10-24 15:56:00"
},
{
"id": "1716725231818739714",
"name": "50",
"amount": 50,
"sort": "1",
"status": "0",
"createTime": "2023-10-24 15:56:05"
},
{
"id": "1716725455446446081",
"name": "100",
"amount": 100,
"sort": "1",
"status": "0",
"createTime": "2023-10-24 15:56:58"
},
{
"id": "1716725472873779202",
"name": "200",
"amount": 200,
"sort": "1",
"status": "0",
"createTime": "2023-10-24 15:57:02"
}
]
}
修改于 2023-11-07 06:35:37