修改支付通道信息
POST
/myauth/web/editEpay只有admin账号有权限使用
请求参数
Header 参数
token
string
必需
示例值:
ec22762345c74b3c9a1201d092d16e1f
Body 参数application/json
ID和标识必填其一
id
integer | null
可选
driver
string | null
通道标识
不可修改
sort
integer | null
排序
1开始越小越靠前
name
string | null
通道名称
config
integer | null
通道配置
格式按照列表接口内来
content
string | null
通道说明
enabled
string | null
开关
0关闭1开启
示例
{
"content": "易支付-微信",
"config": null,
"name": "微信",
"id": 1,
"enabled": 0,
"driver": "epay_wxpay"
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
必需
success
boolean
必需
msg
string
必需
sign
string
必需
result
null
必需
timestamp
integer
必需
示例成功示例
{
"code": 200,
"success": true,
"msg": "设置修改成功",
"sign": "",
"result": null,
"timestamp": 1646748028583
}
最后修改时间: 3 年前