设置提现配置
POST
/adminapi/distribution.withdraw/setConfig
请求参数
Header 参数
token
string
可选
Body 参数application/json
type
array[integer]
提现方式
min_money
integer
最低提现金额
max_money
integer
最高提现金额
handling_fee
integer
提现手续费
open
integer
提现说明开关
explain
string
必需
示例
{
"type": [
1
],
"min_money": 1,
"max_money": 2,
"handling_fee": 1,
"open": 1,
"explain": "说明"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/adminapi/distribution.withdraw/setConfig' \
--header 'token;' \
--header 'Content-Type: application/json' \
--data-raw '{
"type": [
1
],
"min_money": 1,
"max_money": 2,
"handling_fee": 1,
"open": 1,
"explain": "说明"
}'
返回响应
🟢200成功
application/json
Body
code
integer
必需
show
integer
必需
msg
string
必需
data
array[string]
必需
示例
{
"code": 1,
"show": 1,
"msg": "设置成功",
"data": []
}
修改于 2024-03-11 08:23:44