POST api/Shopping/updateCartItem
Request Information
URI Parameters
None.
Body Parameters
CartItem| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| quantity | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": 1,
"quantity": 2
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResultDataOfString| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Message | string |
None. |
|
| Page | integer |
None. |
|
| PageSize | integer |
None. |
|
| RecordCount | integer |
None. |
|
| AllPage | integer |
None. |
|
| Data | Collection of string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"Message": "sample string 2",
"Page": 3,
"PageSize": 4,
"RecordCount": 5,
"AllPage": 6,
"Data": [
"sample string 1",
"sample string 2"
]
}