POST Api/Service/Order/UpdatePurchaseMember
更新采购单账户项
Request Information
URI Parameters
None.
Body Parameters
设置参数
SpeedPower.Utility.Models.Project.Orders.Service.UpdatePurchaseMemberModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ID |
设置ID |
globally unique identifier |
None. |
| PurchaseOrderId |
父级ID |
globally unique identifier |
None. |
| UserName |
采购用户名 |
string |
Required String length: inclusive between 0 and 50 |
| Password |
采购密码 |
string |
String length: inclusive between 0 and 50 |
| ContactPhone |
联系电话 |
string |
String length: inclusive between 0 and 200 |
| Remarks |
账户备注 |
string |
String length: inclusive between 0 and 500 |
| MembersId |
采购账户ID |
string |
String length: inclusive between 0 and 128 |
Request Formats
application/json, text/json
Sample:
{
"ID": "ef59a0e8-fbf7-4e73-b96e-c5c0c32fcf7a",
"PurchaseOrderId": "f4d8a785-dd34-4482-8a55-437183262725",
"UserName": "sample string 3",
"Password": "sample string 4",
"ContactPhone": "sample string 5",
"Remarks": "sample string 6",
"MembersId": "sample string 7"
}
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"
}