GET v1/store/login/user/orders/cart/validations?isChecked={isChecked}&listID={listID}

Validates the cart of the current user.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
isChecked

boolean

Optional

listID

globally unique identifier

Optional

Body Parameters

None.

Response Information

Resource Description

Collection of CartItemValidationModel
NameDescriptionTypeAdditional information
OrderItemID

The unique ID of the order item.

globally unique identifier

None.

Error

The error details.

ErrorModel

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "OrderItemID": "262adf8d-d859-4e38-9e92-cd476311668f",
    "Error": {
      "Type": 1,
      "Level": 1,
      "Message": "sample string 1",
      "Data": {}
    }
  },
  {
    "OrderItemID": "262adf8d-d859-4e38-9e92-cd476311668f",
    "Error": {
      "Type": 1,
      "Level": 1,
      "Message": "sample string 1",
      "Data": {}
    }
  }
]