HepsiGlobal Marketplace API
  1. Listing
HepsiGlobal Marketplace API
  • Introduction
  • Authentication
    • Create token
      POST
  • Products
    • Product Status
      PUT
  • Orders
    • Create Order
      POST
    • Order Item Delivery
      PUT
    • Cancel order by marketplace
      PUT
  • Shipments
    • Send shipment label (fulfillment by MP)
      POST
    • Set shipment status (fulfillment by MP)
      PUT
  • Tracking
    • Shipment Tracking With Barcode
      GET
    • Shipment Tracking With Shipment ID
      GET
  • Refunds
    • Create Refund
      POST
  • Webhooks Integration API (Marketplace's API)
    • Product
      • Product Create
      • Product Update
      • Variant Create
      • Variant Update
      • Enable/Disable product
    • Listing
      • Listing Priority
        PUT
      • Stock update
        PUT
      • Price update
        PUT
      • Bulk Merchant Active
        POST
      • Bulk Merchant Inactive
        POST
      • Variant Listing Status
        POST
      • Variant Listing Count
        GET
    • Orders
      • Send invoice
      • Order cancel (canceled by seller)
    • Shipment
      • Create shipment
      • Set shipment status (fulfillment by HG)
      • Cancel shipment
    • Refund
      • Refund create result
  1. Listing

Price update

PUT
/webhooks/price-update
Updates the price details of multiple variants in bulk (max 1000 at a time). This includes the retail price, discounted price, and currency.

Request

Body Params application/json

Example
{
    "items": [
        {
            "price": 31.4,
            "retail_price": 45,
            "currency": "USD",
            "sku": "HBCV00006RXNEP",
            "channel": "channel1",
            "discount_percentage": 15,
            "company_id": 11111
        }
    ]
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT '/webhooks/price-update' \
--header 'Content-Type: application/json' \
--data-raw '{
    "items": [
        {
            "price": 31.4,
            "retail_price": 45,
            "currency": "USD",
            "sku": "HBCV00006RXNEP",
            "channel": "channel1",
            "discount_percentage": 15,
            "company_id": 11111
        }
    ]
}'

Responses

🟢200Successful Response
application/json
Body

Example
{}
Modified at 2025-03-27 13:23:41
Previous
Stock update
Next
Bulk Merchant Active
Built with