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": "1aea6aa3-b8f1-4685-bd97-4f78073cad0b",
"ExternalID": "sample string 2",
"Name": "sample string 3",
"ExternalUrl": "sample string 4",
"IsDeleted": true,
"ExportDate": "2025-12-17T07:30:43.9996631+00:00",
"ModificationDate": "2025-12-17T07:30:43.9996631+00:00",
"SortingDate": "2025-12-17T07:30:43.9996631+00:00",
"ItemValidations": [
{
"OrderItemID": "f80b2ba8-9272-4bd0-977a-bcff0e59dacc",
"Error": {
"Type": 1,
"Level": 1,
"Message": "sample string 1",
"Data": {}
}
},
{
"OrderItemID": "f80b2ba8-9272-4bd0-977a-bcff0e59dacc",
"Error": {
"Type": 1,
"Level": 1,
"Message": "sample string 1",
"Data": {}
}
}
],
"ItemPrices": [
{
"OrderItemID": "5298f4fa-4d17-4520-949f-a34517e8e867",
"Price": 1.0,
"Tax": 1.0,
"IsChanged": true,
"IsValid": true
},
{
"OrderItemID": "5298f4fa-4d17-4520-949f-a34517e8e867",
"Price": 1.0,
"Tax": 1.0,
"IsChanged": true,
"IsValid": true
}
]
}