POST Api/Service/Payment/UpdateAutoPaymentAccountSetting
更新自动支付配置项
Request Information
URI Parameters
None.
Body Parameters
设置参数
SpeedPower.Utility.Models.Project.Orders.Service.Setting.UpdateAutoPaymentAccountSettingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ID |
设置ID |
globally unique identifier |
None. |
| Sequence |
支付顺序 |
integer |
None. |
| PaymentTag |
支付路由代码 |
string |
Required String length: inclusive between 0 and 20 |
| PaymentCode |
支付源代码 |
string |
Required String length: inclusive between 0 and 20 |
| Status |
启用状态 |
boolean |
None. |
| Remarks |
备注 |
string |
Required String length: inclusive between 0 and 500 |
Request Formats
application/json, text/json
Sample:
{
"ID": "848c9f24-1c68-4834-b089-d0576ea96055",
"Sequence": 2,
"PaymentTag": "sample string 3",
"PaymentCode": "sample string 4",
"Status": true,
"Remarks": "sample string 6"
}
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"
}