POST Api/Service/Setting/UpdatePaymentPlatSetting
更新收付款平台配置项
Request Information
URI Parameters
None.
Body Parameters
设置参数
SpeedPower.Utility.Models.Project.Agents.Service.Setting.UpdatePaymentPlatSettingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ID |
设置ID |
globally unique identifier |
None. |
| PlatType |
收付款平台类型 |
SpeedPower.Utility.Models.Untility.Datas.Enums.PaymentPlatType |
None. |
| PlatName |
平台名称(支付宝,微信...) |
string |
Required String length: inclusive between 0 and 50 |
| Remarks |
备注 |
string |
String length: inclusive between 0 and 500 |
Request Formats
application/json, text/json
Sample:
{
"ID": "34c7ead0-be00-4d3f-b890-52a438c4f3d8",
"PlatType": 0,
"PlatName": "sample string 2",
"Remarks": "sample string 3"
}
Response Information
Resource Description
更新收付款平台配置项
SpeedPower.Utility.Models.Helper.ResultMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Succeed |
操作是否成功 |
boolean |
None. |
| Message |
操作消息 |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Succeed": true,
"Message": "sample string 2"
}