GET api/Item/ItemListByKey?keyValue={keyValue}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| keyValue | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of GetItembyGroupId_Result| Name | Description | Type | Additional information |
|---|---|---|---|
| ItemMasterID | integer |
None. |
|
| GroupID | integer |
None. |
|
| sProduct | string |
None. |
|
| nActualCost | decimal number |
None. |
|
| Price | decimal number |
None. |
|
| CGST | decimal number |
None. |
|
| SGST | decimal number |
None. |
|
| IGST | decimal number |
None. |
|
| GSTpercent | decimal number |
None. |
|
| TotalCost | decimal number |
None. |
|
| GSTCost | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ItemMasterID": 1,
"GroupID": 1,
"sProduct": "sample string 2",
"nActualCost": 1.1,
"Price": 1.1,
"CGST": 1.1,
"SGST": 1.1,
"IGST": 1.1,
"GSTpercent": 1.1,
"TotalCost": 1.1,
"GSTCost": 1.1
},
{
"ItemMasterID": 1,
"GroupID": 1,
"sProduct": "sample string 2",
"nActualCost": 1.1,
"Price": 1.1,
"CGST": 1.1,
"SGST": 1.1,
"IGST": 1.1,
"GSTpercent": 1.1,
"TotalCost": 1.1,
"GSTCost": 1.1
}
]
application/xml, text/xml
Sample:
<ArrayOfGetItembyGroupId_Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RestaurantApi">
<GetItembyGroupId_Result>
<CGST>1.1</CGST>
<GSTCost>1.1</GSTCost>
<GSTpercent>1.1</GSTpercent>
<GroupID>1</GroupID>
<IGST>1.1</IGST>
<ItemMasterID>1</ItemMasterID>
<Price>1.1</Price>
<SGST>1.1</SGST>
<TotalCost>1.1</TotalCost>
<nActualCost>1.1</nActualCost>
<sProduct>sample string 2</sProduct>
</GetItembyGroupId_Result>
<GetItembyGroupId_Result>
<CGST>1.1</CGST>
<GSTCost>1.1</GSTCost>
<GSTpercent>1.1</GSTpercent>
<GroupID>1</GroupID>
<IGST>1.1</IGST>
<ItemMasterID>1</ItemMasterID>
<Price>1.1</Price>
<SGST>1.1</SGST>
<TotalCost>1.1</TotalCost>
<nActualCost>1.1</nActualCost>
<sProduct>sample string 2</sProduct>
</GetItembyGroupId_Result>
</ArrayOfGetItembyGroupId_Result>