POST api/customer/updateBuyRecord/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
EditCustomerByRecordDto| Name | Description | Type | Additional information |
|---|---|---|---|
| IdCustomer | globally unique identifier |
None. |
|
| AccountNumber | string |
None. |
|
| Bank | string |
None. |
|
| Quantity | integer |
None. |
|
| Note | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"IdCustomer": "53df8937-402a-4d4c-8410-31e451af0e77",
"AccountNumber": "sample string 2",
"Bank": "sample string 3",
"Quantity": 1,
"Note": "sample string 4"
}
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.