POST api/Cart
Request Information
URI Parameters
None.
Body Parameters
Cart| Name | Description | Type | Additional information |
|---|---|---|---|
| DEALER_ID | string |
None. |
|
| PRODUCT_ID | string |
None. |
|
| PS_ID | string |
None. |
|
| QTY | string |
None. |
|
| TASK | string |
None. |
|
| CART_ID | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"DEALER_ID": "sample string 1",
"PRODUCT_ID": "sample string 2",
"PS_ID": "sample string 3",
"QTY": "sample string 4",
"TASK": "sample string 5",
"CART_ID": "sample string 6"
}
application/xml, text/xml
Sample:
<Cart xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApiAFC.Models"> <CART_ID>sample string 6</CART_ID> <DEALER_ID>sample string 1</DEALER_ID> <PRODUCT_ID>sample string 2</PRODUCT_ID> <PS_ID>sample string 3</PS_ID> <QTY>sample string 4</QTY> <TASK>sample string 5</TASK> </Cart>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |