GET api/General/Customer/GetCartItemDtls?CartRecordID={CartRecordID}&CartID={CartID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| CartRecordID | integer |
Required |
|
| CartID | string |
Required |
Body Parameters
None.
Response Information
Resource Description
utblShoppingCart| Name | Description | Type | Additional information |
|---|---|---|---|
| CartRecordID | integer |
None. |
|
| CartID | string |
None. |
|
| MenuID | integer |
None. |
|
| Qty | integer |
None. |
|
| Tax | integer |
None. |
|
| Price | decimal number |
None. |
|
| SizeOptionID | string |
None. |
|
| ExcludedItemsMentioned | boolean |
None. |
|
| UserID | string |
None. |
|
| TransDate | date |
None. |
|
| AddedBy | string |
None. |
|
| NoteToRestaurant | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"CartRecordID": 1,
"CartID": "sample string 2",
"MenuID": 3,
"Qty": 4,
"Tax": 5,
"Price": 6.0,
"SizeOptionID": "sample string 7",
"ExcludedItemsMentioned": true,
"UserID": "sample string 9",
"TransDate": "2025-12-07T10:02:21.3579737+05:30",
"AddedBy": "sample string 11",
"NoteToRestaurant": "sample string 12"
}
application/xml, text/xml
Sample:
<utblShoppingCart xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/General.Operations.CustomModels"> <AddedBy>sample string 11</AddedBy> <CartID>sample string 2</CartID> <CartRecordID>1</CartRecordID> <ExcludedItemsMentioned>true</ExcludedItemsMentioned> <MenuID>3</MenuID> <NoteToRestaurant>sample string 12</NoteToRestaurant> <Price>6</Price> <Qty>4</Qty> <SizeOptionID>sample string 7</SizeOptionID> <Tax>5</Tax> <TransDate>2025-12-07T10:02:21.3579737+05:30</TransDate> <UserID>sample string 9</UserID> </utblShoppingCart>