GET api/ProductInventry

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of GetProductInventry_Result
NameDescriptionTypeAdditional information
ProductInventryId

integer

None.

ProductName

string

None.

VariantName

string

None.

ItemTypeId

integer

None.

ItemType

string

None.

StockDate

date

None.

Quantity

decimal number

None.

Price

decimal number

None.

FinalPrice

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ProductInventryId": 1,
    "ProductName": "sample string 2",
    "VariantName": "sample string 3",
    "ItemTypeId": 1,
    "ItemType": "sample string 4",
    "StockDate": "2025-12-06T09:58:23.367541+05:30",
    "Quantity": 1.0,
    "Price": 1.0,
    "FinalPrice": 1.0
  },
  {
    "ProductInventryId": 1,
    "ProductName": "sample string 2",
    "VariantName": "sample string 3",
    "ItemTypeId": 1,
    "ItemType": "sample string 4",
    "StockDate": "2025-12-06T09:58:23.367541+05:30",
    "Quantity": 1.0,
    "Price": 1.0,
    "FinalPrice": 1.0
  }
]

application/xml, text/xml

Sample:
<ArrayOfGetProductInventry_Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GNGroup.Models">
  <GetProductInventry_Result>
    <FinalPrice>1</FinalPrice>
    <ItemType>sample string 4</ItemType>
    <ItemTypeId>1</ItemTypeId>
    <Price>1</Price>
    <ProductInventryId>1</ProductInventryId>
    <ProductName>sample string 2</ProductName>
    <Quantity>1</Quantity>
    <StockDate>2025-12-06T09:58:23.367541+05:30</StockDate>
    <VariantName>sample string 3</VariantName>
  </GetProductInventry_Result>
  <GetProductInventry_Result>
    <FinalPrice>1</FinalPrice>
    <ItemType>sample string 4</ItemType>
    <ItemTypeId>1</ItemTypeId>
    <Price>1</Price>
    <ProductInventryId>1</ProductInventryId>
    <ProductName>sample string 2</ProductName>
    <Quantity>1</Quantity>
    <StockDate>2025-12-06T09:58:23.367541+05:30</StockDate>
    <VariantName>sample string 3</VariantName>
  </GetProductInventry_Result>
</ArrayOfGetProductInventry_Result>