GET api/General/Customer/GetExcludedItemsForCartItem?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
Collection of ExcludedItemModel| Name | Description | Type | Additional information |
|---|---|---|---|
| CartID | string |
None. |
|
| CartRecordID | integer |
None. |
|
| MenuID | integer |
None. |
|
| ItemName | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"CartID": "sample string 1",
"CartRecordID": 2,
"MenuID": 3,
"ItemName": "sample string 4"
},
{
"CartID": "sample string 1",
"CartRecordID": 2,
"MenuID": 3,
"ItemName": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfExcludedItemModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/General.Operations.CustomModels">
<ExcludedItemModel>
<CartID>sample string 1</CartID>
<CartRecordID>2</CartRecordID>
<ItemName>sample string 4</ItemName>
<MenuID>3</MenuID>
</ExcludedItemModel>
<ExcludedItemModel>
<CartID>sample string 1</CartID>
<CartRecordID>2</CartRecordID>
<ItemName>sample string 4</ItemName>
<MenuID>3</MenuID>
</ExcludedItemModel>
</ArrayOfExcludedItemModel>