GET v1/store/login/user/orders/cart/lists/{listID}/details

Gets detailed information about cart list by cart list ID.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
listID

Cart list's ID.

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Returns detailed cart list data.

CartListDetailsModel
NameDescriptionTypeAdditional information
ID

Cart list ID.

globally unique identifier

None.

ExternalID

Cart list external ID.

string

None.

Name

Cart list name.

string

None.

ExternalUrl

Cart list external URL.

string

None.

IsDeleted

Flag that indicate is cart list was deleted.

boolean

None.

ExportDate

Cart list export date.

date

None.

ModificationDate

Cart list modification date.

date

None.

SortingDate

Cart list sorting date.

date

None.

ItemValidations

Cart list's validation summary for the assigned order product(s).

Collection of CartItemValidationModel

None.

ItemPrices

Cart list's pricing info for the assigned order product(s).

Collection of CartItemPriceModel

None.

Response Formats

application/json, text/json

Sample:
{
  "ID": "4c4d361d-311b-4ee2-9739-d822ab34dd72",
  "ExternalID": "sample string 2",
  "Name": "sample string 3",
  "ExternalUrl": "sample string 4",
  "IsDeleted": true,
  "ExportDate": "2025-12-16T11:25:07.5718473+01:00",
  "ModificationDate": "2025-12-16T11:25:07.5718473+01:00",
  "SortingDate": "2025-12-16T11:25:07.5718473+01:00",
  "ItemValidations": [
    {
      "OrderItemID": "0c0ff571-8ffc-448e-8eb7-8c7bb33dbe2b",
      "Error": {
        "Type": 1,
        "Level": 1,
        "Message": "sample string 1",
        "Data": {}
      }
    },
    {
      "OrderItemID": "0c0ff571-8ffc-448e-8eb7-8c7bb33dbe2b",
      "Error": {
        "Type": 1,
        "Level": 1,
        "Message": "sample string 1",
        "Data": {}
      }
    }
  ],
  "ItemPrices": [
    {
      "OrderItemID": "66ba4900-8948-450e-ac9c-06eacedbb960",
      "Price": 1.0,
      "Tax": 1.0,
      "IsChanged": true,
      "IsValid": true
    },
    {
      "OrderItemID": "66ba4900-8948-450e-ac9c-06eacedbb960",
      "Price": 1.0,
      "Tax": 1.0,
      "IsChanged": true,
      "IsValid": true
    }
  ]
}