POST v1/price/update

Atualiza preços de produtos

Request Information

URI Parameters

None.

Body Parameters

Parâmetros de carga de preços

Collection of PriceUpdateDTO
NameDescriptionTypeAdditional information
SellerKey

string

None.

ProductCode

string

None.

ApplyDate

date

None.

ListPrice

decimal number

None.

Price

decimal number

None.

SkuCode

string

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "SellerKey": "sample string 1",
    "ProductCode": "sample string 2",
    "ApplyDate": "2026-08-10T13:43:26.0387793-03:00",
    "ListPrice": 4.1,
    "Price": 5.1,
    "SkuCode": "sample string 6"
  },
  {
    "SellerKey": "sample string 1",
    "ProductCode": "sample string 2",
    "ApplyDate": "2026-08-10T13:43:26.0387793-03:00",
    "ListPrice": 4.1,
    "Price": 5.1,
    "SkuCode": "sample string 6"
  }
]

application/xml, text/xml

Sample:
<ArrayOfPriceUpdateDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/eXpert.Domain.DTO">
  <PriceUpdateDTO>
    <ApplyDate>2026-08-10T13:43:26.0387793-03:00</ApplyDate>
    <ListPrice>4.1</ListPrice>
    <Price>5.1</Price>
    <ProductCode>sample string 2</ProductCode>
    <SellerKey>sample string 1</SellerKey>
    <SkuCode>sample string 6</SkuCode>
  </PriceUpdateDTO>
  <PriceUpdateDTO>
    <ApplyDate>2026-08-10T13:43:26.0387793-03:00</ApplyDate>
    <ListPrice>4.1</ListPrice>
    <Price>5.1</Price>
    <ProductCode>sample string 2</ProductCode>
    <SellerKey>sample string 1</SellerKey>
    <SkuCode>sample string 6</SkuCode>
  </PriceUpdateDTO>
</ArrayOfPriceUpdateDTO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.