GET api/Inventory/getRecord/SubCategory/Fees/{Id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Id

integer

Required

Body Parameters

None.

Response Information

Resource Description

InventoryDto
NameDescriptionTypeAdditional 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>