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": "4a708c1e-6cbe-48fc-8188-1fc7cf301ef6",
"ExternalID": "sample string 2",
"Name": "sample string 3",
"ExternalUrl": "sample string 4",
"IsDeleted": true,
"ExportDate": "2026-06-02T15:25:56.8433806-04:00",
"ModificationDate": "2026-06-02T15:25:56.8433806-04:00",
"SortingDate": "2026-06-02T15:25:56.8433806-04:00",
"ItemValidations": [
{
"OrderItemID": "512fa342-2906-4810-906f-8070345b4c55",
"Error": {
"Type": 1,
"Level": 1,
"Message": "sample string 1",
"Data": {}
}
},
{
"OrderItemID": "512fa342-2906-4810-906f-8070345b4c55",
"Error": {
"Type": 1,
"Level": 1,
"Message": "sample string 1",
"Data": {}
}
}
],
"ItemPrices": [
{
"OrderItemID": "d22b7eae-31cb-48e5-b5dd-2506d9bfb330",
"Price": 1.0,
"Tax": 1.0,
"IsChanged": true,
"IsValid": true
},
{
"OrderItemID": "d22b7eae-31cb-48e5-b5dd-2506d9bfb330",
"Price": 1.0,
"Tax": 1.0,
"IsChanged": true,
"IsValid": true
}
]
}