POST api/save_cart_Flotter
Request Information
URI Parameters
None.
Body Parameters
cart_items_rows| Name | Description | Type | Additional information |
|---|---|---|---|
| product_id | string |
None. |
|
| quantity | integer |
None. |
|
| user_id | string |
None. |
|
| selectedColor | string |
None. |
|
| shape | string |
None. |
|
| unit_price | integer |
None. |
|
| total_price | integer |
None. |
|
| User_email | string |
None. |
|
| ImagePath | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"product_id": "sample string 1",
"quantity": 2,
"user_id": "sample string 3",
"selectedColor": "sample string 4",
"shape": "sample string 5",
"unit_price": 6,
"total_price": 7,
"User_email": "sample string 8",
"ImagePath": "sample string 9"
}
application/xml, text/xml
Sample:
<cart_items_rows xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MIDAS_API.Models"> <ImagePath>sample string 9</ImagePath> <User_email>sample string 8</User_email> <product_id>sample string 1</product_id> <quantity>2</quantity> <selectedColor>sample string 4</selectedColor> <shape>sample string 5</shape> <total_price>7</total_price> <unit_price>6</unit_price> <user_id>sample string 3</user_id> </cart_items_rows>
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. |