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

Stock update

PUT
/webhooks/stock-update
Updates stock information for multiple variants in bulk. Each request can include up to 1000 variants. Includes stock quantity and estimated arrival time.

Request

Body Params application/json

Example
{
    "items": [
        {
            "working_days": 4,
            "stock": 8,
            "company_id": 11111,
            "sku": "HBCV00006RXNEP"
        }
    ]
}

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/stock-update' \
--header 'Content-Type: application/json' \
--data-raw '{
    "items": [
        {
            "working_days": 4,
            "stock": 8,
            "company_id": 11111,
            "sku": "HBCV00006RXNEP"
        }
    ]
}'

Responses

🟢200Successful Response
application/json
Body

Example
{}
Modified at 2025-03-27 14:09:11
Previous
Listing Priority
Next
Price update
Built with