POST api/cart/updatecart
Request Information
URI Parameters
None.
Body Parameters
EntityOrderDetail| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| ApplicationId | integer |
None. |
|
| IsQuote | boolean |
None. |
|
| Remark | string |
None. |
|
| Quantity | integer |
None. |
|
| TotalPrice | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"ApplicationId": 2,
"IsQuote": true,
"Remark": "sample string 4",
"Quantity": 5,
"TotalPrice": 6.1
}
application/xml, text/xml
Sample:
<EntityOrderDetail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GM.Business.Entity"> <ApplicationId>2</ApplicationId> <Id>1</Id> <IsQuote>true</IsQuote> <Quantity>5</Quantity> <Remark>sample string 4</Remark> <TotalPrice>6.1</TotalPrice> </EntityOrderDetail>
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.