PUT api/ProductInventry/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

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.

Request Formats

application/json, text/json

Sample:
{
  "ProductInventryId": 1,
  "ProductVariantId": 1,
  "ProductId": 1,
  "ItemTypeId": 1,
  "Quantity": 1,
  "QuantityInKg": 1.0,
  "StockDate": "2025-12-06T09:55:50.6753287+05:30",
  "StatusTypeId": 1,
  "CreatedDate": "2025-12-06T09:55:50.6753287+05:30",
  "UpdatedDate": "2025-12-06T09:55:50.6753287+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:55:50.6753287+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:55:50.6753287+05:30</StockDate>
  <UpdatedDate>2025-12-06T09:55:50.6753287+05:30</UpdatedDate>
</ProductInventry>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.