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": "106e5d3e-5f1a-4f9d-bfd9-08ff59d70d0a",
"ExternalID": "sample string 2",
"Name": "sample string 3",
"ExternalUrl": "sample string 4",
"IsDeleted": true,
"ExportDate": "2026-06-01T19:41:26.3932788+01:00",
"ModificationDate": "2026-06-01T19:41:26.3942786+01:00",
"SortingDate": "2026-06-01T19:41:26.3942786+01:00",
"ItemValidations": [
{
"OrderItemID": "2198c769-055c-464d-9f98-4ad6f1f8f3da",
"Error": {
"Type": 1,
"Level": 1,
"Message": "sample string 1",
"Data": {}
}
},
{
"OrderItemID": "2198c769-055c-464d-9f98-4ad6f1f8f3da",
"Error": {
"Type": 1,
"Level": 1,
"Message": "sample string 1",
"Data": {}
}
}
],
"ItemPrices": [
{
"OrderItemID": "1e133ff0-6c3d-4bc3-96c0-631d36ac6ec2",
"Price": 1.0,
"Tax": 1.0,
"IsChanged": true,
"IsValid": true
},
{
"OrderItemID": "1e133ff0-6c3d-4bc3-96c0-631d36ac6ec2",
"Price": 1.0,
"Tax": 1.0,
"IsChanged": true,
"IsValid": true
}
]
}