POST Api/Service/Member/UpdatePurchaseMemberConfig
更新采购账户金融项
Request Information
URI Parameters
None.
Body Parameters
设置模型
SpeedPower.Utility.Models.Project.Orders.Service.Setting.UpdatePurchaseMemberConfigModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ID |
设置ID |
globally unique identifier |
None. |
| Password |
支付密码(可为空) |
string |
String length: inclusive between 0 and 50 |
| MinBalance |
最小保留金额 |
decimal number |
None. |
| MaxBalance |
最大可用余额 |
decimal number |
None. |
| Remarks |
备注 |
string |
String length: inclusive between 0 and 50 |
Request Formats
application/json, text/json
Sample:
{
"ID": "85535b8c-b815-41b1-bad4-daa567f4e7f4",
"Password": "sample string 2",
"MinBalance": 3.1,
"MaxBalance": 4.1,
"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"
}