GET api/ProductInventry/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

ProductInventry
NameDescriptionTypeAdditional information
ProductInventryId

integer

None.

ProductVariantId

integer

None.

ProductId

integer

None.

ItemTypeId

integer

None.

Quantity

integer

None.

QuantityInKg

decimal number

None.

StockDate

date

None.

StatusTypeId

integer

None.

CreatedDate

date

None.

UpdatedDate

date

None.

Response Formats

application/json, text/json

Sample:
{
  "ProductInventryId": 1,
  "ProductVariantId": 1,
  "ProductId": 1,
  "ItemTypeId": 1,
  "Quantity": 1,
  "QuantityInKg": 1.0,
  "StockDate": "2025-12-06T09:58:22.6332653+05:30",
  "StatusTypeId": 1,
  "CreatedDate": "2025-12-06T09:58:22.6332653+05:30",
  "UpdatedDate": "2025-12-06T09:58:22.6332653+05:30"
}

application/xml, text/xml

Sample:
<ProductInventry xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GNGroup.Models">
  <CreatedDate>2025-12-06T09:58:22.6332653+05:30</CreatedDate>
  <ItemTypeId>1</ItemTypeId>
  <ProductId>1</ProductId>
  <ProductInventryId>1</ProductInventryId>
  <ProductVariantId>1</ProductVariantId>
  <Quantity>1</Quantity>
  <QuantityInKg>1</QuantityInKg>
  <StatusTypeId>1</StatusTypeId>
  <StockDate>2025-12-06T09:58:22.6332653+05:30</StockDate>
  <UpdatedDate>2025-12-06T09:58:22.6332653+05:30</UpdatedDate>
</ProductInventry>