GET v1/store/login/user/orders/cart/lists/{listID}/details
Gets detailed information about cart list by cart list ID.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| listID |
Cart list's ID. |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Returns detailed cart list data.
CartListDetailsModel| Name | Description | Type | Additional 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": "b3125d8f-f8fa-4336-896e-3138af35762d",
"ExternalID": "sample string 2",
"Name": "sample string 3",
"ExternalUrl": "sample string 4",
"IsDeleted": true,
"ExportDate": "2026-06-13T09:58:58.0321321+02:00",
"ModificationDate": "2026-06-13T09:58:58.0321321+02:00",
"SortingDate": "2026-06-13T09:58:58.0321321+02:00",
"ItemValidations": [
{
"OrderItemID": "a53ee32a-9d98-4b86-8636-641c33fee3f5",
"Error": {
"Type": 1,
"Level": 1,
"Message": "sample string 1",
"Data": {}
}
},
{
"OrderItemID": "a53ee32a-9d98-4b86-8636-641c33fee3f5",
"Error": {
"Type": 1,
"Level": 1,
"Message": "sample string 1",
"Data": {}
}
}
],
"ItemPrices": [
{
"OrderItemID": "b8c7f572-8257-42f8-8802-f688a01216cd",
"Price": 1.0,
"Tax": 1.0,
"IsChanged": true,
"IsValid": true
},
{
"OrderItemID": "b8c7f572-8257-42f8-8802-f688a01216cd",
"Price": 1.0,
"Tax": 1.0,
"IsChanged": true,
"IsValid": true
}
]
}