POST api/Order/CheckOrder
Request Information
URI Parameters
None.
Body Parameters
CheckOrderModel| Name | Description | Type | Additional information |
|---|---|---|---|
| MemberID | integer |
None. |
|
| City | string |
None. |
|
| Area | string |
None. |
|
| IsOversea | boolean |
None. |
|
| ReCity | string |
None. |
|
| TaxNo | string |
None. |
|
| ShipDate | string |
None. |
|
| TotalPrice | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"memberID": 1,
"city": "sample string 2",
"area": "sample string 3",
"isOversea": true,
"reCity": "sample string 5",
"taxNo": "sample string 6",
"shipDate": "sample string 7",
"totalPrice": 8
}
application/xml, text/xml
Sample:
<CheckOrderModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BankproProduct.Models.ViewModel"> <Area>sample string 3</Area> <City>sample string 2</City> <IsOversea>true</IsOversea> <MemberID>1</MemberID> <ReCity>sample string 5</ReCity> <ShipDate>sample string 7</ShipDate> <TaxNo>sample string 6</TaxNo> <TotalPrice>8</TotalPrice> </CheckOrderModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.