PUT api/Product/Update
Request Information
URI Parameters
None.
Body Parameters
ProductModelName | Description | Type | Additional information |
---|---|---|---|
Name | string |
None. |
|
Price | decimal number |
None. |
|
PriceWithDiscount | decimal number |
None. |
|
Discount | decimal number |
None. |
|
SKU | string |
None. |
|
ProductURL | string |
None. |
|
ImageURL | string |
None. |
|
ProviderID | globally unique identifier |
None. |
|
ProviderName | string |
None. |
|
Id | globally unique identifier |
None. |
|
Detail | string |
None. |
|
IsActive | boolean |
None. |
|
CreatedBy | globally unique identifier |
None. |
|
CreatedDate | date |
None. |
|
ModifiedBy | globally unique identifier |
None. |
|
ModifiedDate | date |
None. |
|
DeletedBy | globally unique identifier |
None. |
|
DeletedDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{ "Name": "sample string 1", "Price": 2.0, "PriceWithDiscount": 3.0, "Discount": 4.0, "SKU": "sample string 5", "ProductURL": "sample string 6", "ImageURL": "sample string 7", "ProviderID": "aeb40309-d8c9-482a-9844-87002d00aa13", "ProviderName": "sample string 9", "Id": "f90fcf1b-0f57-4b8d-ac88-c71aa7d04090", "Detail": "sample string 11", "IsActive": true, "CreatedBy": "ad3f6f20-22b7-4bf2-b71d-de3e0c3e907e", "CreatedDate": "2025-10-17T16:36:18.2413311-07:00", "ModifiedBy": "df34975f-a288-4a1c-b20a-104c695bd293", "ModifiedDate": "2025-10-17T16:36:18.2413311-07:00", "DeletedBy": "93d13878-af44-49d6-8382-3e9e0bfc6eea", "DeletedDate": "2025-10-17T16:36:18.2413311-07:00" }
application/xml, text/xml
Sample:
<ProductModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LifeHub.Ubico.Common.Models.Inventory"> <CreatedBy xmlns="http://schemas.datacontract.org/2004/07/LifeHub.Ubico.Common.Models.Base">ad3f6f20-22b7-4bf2-b71d-de3e0c3e907e</CreatedBy> <CreatedDate xmlns="http://schemas.datacontract.org/2004/07/LifeHub.Ubico.Common.Models.Base">2025-10-17T16:36:18.2413311-07:00</CreatedDate> <DeletedBy xmlns="http://schemas.datacontract.org/2004/07/LifeHub.Ubico.Common.Models.Base">93d13878-af44-49d6-8382-3e9e0bfc6eea</DeletedBy> <DeletedDate xmlns="http://schemas.datacontract.org/2004/07/LifeHub.Ubico.Common.Models.Base">2025-10-17T16:36:18.2413311-07:00</DeletedDate> <Detail xmlns="http://schemas.datacontract.org/2004/07/LifeHub.Ubico.Common.Models.Base">sample string 11</Detail> <Id xmlns="http://schemas.datacontract.org/2004/07/LifeHub.Ubico.Common.Models.Base">f90fcf1b-0f57-4b8d-ac88-c71aa7d04090</Id> <IsActive xmlns="http://schemas.datacontract.org/2004/07/LifeHub.Ubico.Common.Models.Base">true</IsActive> <ModifiedBy xmlns="http://schemas.datacontract.org/2004/07/LifeHub.Ubico.Common.Models.Base">df34975f-a288-4a1c-b20a-104c695bd293</ModifiedBy> <ModifiedDate xmlns="http://schemas.datacontract.org/2004/07/LifeHub.Ubico.Common.Models.Base">2025-10-17T16:36:18.2413311-07:00</ModifiedDate> <Discount>4</Discount> <ImageURL>sample string 7</ImageURL> <Name>sample string 1</Name> <Price>2</Price> <PriceWithDiscount>3</PriceWithDiscount> <ProductURL>sample string 6</ProductURL> <ProviderID>aeb40309-d8c9-482a-9844-87002d00aa13</ProviderID> <ProviderName>sample string 9</ProviderName> <SKU>sample string 5</SKU> </ProductModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessageName | Description | Type | Additional information |
---|---|---|---|
Version | Version |
None. |
|
Content | HttpContent |
None. |
|
StatusCode | HttpStatusCode |
None. |
|
ReasonPhrase | string |
None. |
|
Headers | Collection of Object |
None. |
|
RequestMessage | HttpRequestMessage |
None. |
|
IsSuccessStatusCode | boolean |
None. |