PUT v1/store/login/user/orders/cart/{orderItemID}
Updates the item of the cart of the current user.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| orderItemID |
The unique ID of the cart item. |
globally unique identifier |
Required |
Body Parameters
The cart item update model.
CartItemUpdateModel| Name | Description | Type | Additional information |
|---|---|---|---|
| OrderItemID |
The unique ID of the order item. |
globally unique identifier |
None. |
| IsChecked |
Indicates whether the item is marked in the cart. If null is specified, the value does not change, the original value is preserved. |
boolean |
None. |
| Nickname |
The nickname of the cart item. If null is specified, the value does not change, the original value is preserved. |
string |
None. |
| ListID |
The unique ID of the submission list. |
globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"OrderItemID": "2c610ce8-52d9-4a71-bd30-90e616512808",
"IsChecked": true,
"Nickname": "sample string 1",
"ListID": "7e463076-f898-49d7-8563-243cd4d1c277"
}
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. |