Yep Platform logo
REST API · Yep Platform Technical documentation for certified integrations

Pricing

Base price, special price with date range and customer group pricing — with index consistency for promotions and countdown.

Base price Special Per group

Overview

Pricing flows were hardened for higher consistency on base, special and group prices. Changes to special_price trigger the selective reprocessing needed to keep the Countdown index coherent.

POST/api2/price/

Update the product base price.

{
  "type": "sku",
  "sku": "novo_produto",
  "price": 250.00
}
POST/api2/price/special

Update special price with date range.

{
  "type": "sku",
  "sku": "novo_produto",
  "special_price": 23233.99,
  "special_from_date": "2025-09-10",
  "special_to_date": "2025-10-01"
}
POST/api2/price/group

Update customer group prices.

{
  "type": "sku",
  "sku": "novo_produto",
  "group_prices": [
    {"cust_group": 2, "price": 533},
    {"cust_group": 1, "price": 350}
  ]
}

Operational note

When the batch involves special_price and related special dates, the pricing routine also performs the selective reprocessing needed to keep the Countdown index consistent.