POST api/Product/Create

Request Information

URI Parameters

None.

Body Parameters

ProductModel
NameDescriptionTypeAdditional 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": "fcf9eb18-0848-44f6-a762-684057a964a9",
  "ProviderName": "sample string 9",
  "Id": "fe9501c6-3f82-429e-8e89-a52490de3802",
  "Detail": "sample string 11",
  "IsActive": true,
  "CreatedBy": "ef39cc8a-fb28-45bd-bd1a-50cce49d1955",
  "CreatedDate": "2024-12-29T09:40:05.4811315-08:00",
  "ModifiedBy": "b5daff26-7341-45bc-8276-27f8f1b64d53",
  "ModifiedDate": "2024-12-29T09:40:05.4811315-08:00",
  "DeletedBy": "2d24e7d5-9b2c-4ccb-980e-fdc88df8de96",
  "DeletedDate": "2024-12-29T09:40:05.4811315-08: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">ef39cc8a-fb28-45bd-bd1a-50cce49d1955</CreatedBy>
  <CreatedDate xmlns="http://schemas.datacontract.org/2004/07/LifeHub.Ubico.Common.Models.Base">2024-12-29T09:40:05.4811315-08:00</CreatedDate>
  <DeletedBy xmlns="http://schemas.datacontract.org/2004/07/LifeHub.Ubico.Common.Models.Base">2d24e7d5-9b2c-4ccb-980e-fdc88df8de96</DeletedBy>
  <DeletedDate xmlns="http://schemas.datacontract.org/2004/07/LifeHub.Ubico.Common.Models.Base">2024-12-29T09:40:05.4811315-08: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">fe9501c6-3f82-429e-8e89-a52490de3802</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">b5daff26-7341-45bc-8276-27f8f1b64d53</ModifiedBy>
  <ModifiedDate xmlns="http://schemas.datacontract.org/2004/07/LifeHub.Ubico.Common.Models.Base">2024-12-29T09:40:05.4811315-08: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>fcf9eb18-0848-44f6-a762-684057a964a9</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

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.