PUT v1/store/login/user/orders/cart/{orderItemID}

Updates the item of the cart of the current user.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
orderItemID

The unique ID of the cart item.

globally unique identifier

Required

Body Parameters

The cart item update model.

CartItemUpdateModel
NameDescriptionTypeAdditional 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": "dbc4eb74-7391-4827-b99f-5d9476ccc274",
  "IsChecked": true,
  "Nickname": "sample string 1",
  "ListID": "12481542-3aeb-4108-bced-122e35b5b7b6"
}

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.