POST Api/Service/Payment/AddAutoPaymentAccountIntactSetting
添加自动支付完整配置项
Request Information
URI Parameters
None.
Body Parameters
设置参数
SpeedPower.Utility.Models.Project.Orders.Service.Setting.IntactAutoPaymentAccountSettingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| AutoPaymentAccountConfigs |
自动支付设置列表 |
Collection of SpeedPower.Utility.Models.Project.Orders.Service.Setting.AddAutoPaymentAccountConfigModel |
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:
{
"AutoPaymentAccountConfigs": [
{
"AutoPaymentAccountSettingId": "15dec780-6ed1-4999-aa75-e27e5a90753c",
"SettingKey": "sample string 2",
"SettingValue": "sample string 3"
},
{
"AutoPaymentAccountSettingId": "15dec780-6ed1-4999-aa75-e27e5a90753c",
"SettingKey": "sample string 2",
"SettingValue": "sample string 3"
}
],
"Sequence": 1,
"PaymentTag": "sample string 2",
"PaymentCode": "sample string 3",
"Status": true,
"Remarks": "sample string 5"
}
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"
}