GET api/General/OrderManage/GetOrderAddOnsByID?Id={Id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of OrderAddonView| Name | Description | Type | Additional information |
|---|---|---|---|
| OrderAddOnID | string |
None. |
|
| OrderID | string |
None. |
|
| MenuOrderID | integer |
None. |
|
| MenuID | integer |
None. |
|
| AddOnCategory | string |
None. |
|
| AddOnName | string |
None. |
|
| Qty | integer |
None. |
|
| AddOnPrice | decimal number |
None. |
|
| Tax | integer |
None. |
|
| AddOnPriceWithTax | decimal number |
None. |
|
| TotalAmtWithoutTax | decimal number |
None. |
|
| TotalAmtWithTax | decimal number |
None. |
|
| UserID | string |
None. |
|
| TransDate | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"OrderAddOnID": "sample string 1",
"OrderID": "sample string 2",
"MenuOrderID": 3,
"MenuID": 4,
"AddOnCategory": "sample string 5",
"AddOnName": "sample string 6",
"Qty": 1,
"AddOnPrice": 7.0,
"Tax": 8,
"AddOnPriceWithTax": 9.0,
"TotalAmtWithoutTax": 10.0,
"TotalAmtWithTax": 11.0,
"UserID": "sample string 12",
"TransDate": "2025-12-07T09:55:39.6504803+05:30"
},
{
"OrderAddOnID": "sample string 1",
"OrderID": "sample string 2",
"MenuOrderID": 3,
"MenuID": 4,
"AddOnCategory": "sample string 5",
"AddOnName": "sample string 6",
"Qty": 1,
"AddOnPrice": 7.0,
"Tax": 8,
"AddOnPriceWithTax": 9.0,
"TotalAmtWithoutTax": 10.0,
"TotalAmtWithTax": 11.0,
"UserID": "sample string 12",
"TransDate": "2025-12-07T09:55:39.6504803+05:30"
}
]
application/xml, text/xml
Sample:
<ArrayOfOrderAddonView xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/General.Operations.CustomModels">
<OrderAddonView>
<AddOnCategory>sample string 5</AddOnCategory>
<AddOnName>sample string 6</AddOnName>
<AddOnPrice>7</AddOnPrice>
<AddOnPriceWithTax>9</AddOnPriceWithTax>
<MenuID>4</MenuID>
<MenuOrderID>3</MenuOrderID>
<OrderAddOnID>sample string 1</OrderAddOnID>
<OrderID>sample string 2</OrderID>
<Qty>1</Qty>
<Tax>8</Tax>
<TotalAmtWithTax>11</TotalAmtWithTax>
<TotalAmtWithoutTax>10</TotalAmtWithoutTax>
<TransDate>2025-12-07T09:55:39.6504803+05:30</TransDate>
<UserID>sample string 12</UserID>
</OrderAddonView>
<OrderAddonView>
<AddOnCategory>sample string 5</AddOnCategory>
<AddOnName>sample string 6</AddOnName>
<AddOnPrice>7</AddOnPrice>
<AddOnPriceWithTax>9</AddOnPriceWithTax>
<MenuID>4</MenuID>
<MenuOrderID>3</MenuOrderID>
<OrderAddOnID>sample string 1</OrderAddOnID>
<OrderID>sample string 2</OrderID>
<Qty>1</Qty>
<Tax>8</Tax>
<TotalAmtWithTax>11</TotalAmtWithTax>
<TotalAmtWithoutTax>10</TotalAmtWithoutTax>
<TransDate>2025-12-07T09:55:39.6504803+05:30</TransDate>
<UserID>sample string 12</UserID>
</OrderAddonView>
</ArrayOfOrderAddonView>