GET api/Inventory/getRecord/SubCategory/Fees/{Id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
InventoryDto| Name | Description | Type | Additional information |
|---|---|---|---|
| FeesId | decimal number |
None. |
|
| FeesName | string |
None. |
|
| SaleRate | decimal number |
None. |
|
| Size | string |
None. |
|
| ImagePath | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"FeesId": 1.0,
"FeesName": "sample string 2",
"SaleRate": 1.1,
"Size": "sample string 3",
"ImagePath": "sample string 4"
}
application/xml, text/xml
Sample:
<InventoryDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ZenoxGenius.API.Models.Extensions"> <FeesId>1</FeesId> <FeesName>sample string 2</FeesName> <ImagePath>sample string 4</ImagePath> <SaleRate>1.1</SaleRate> <Size>sample string 3</Size> </InventoryDto>