HepsiGlobal Marketplace API
  1. Product
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
        POST
      • Product Update
        PUT
      • Variant Create
        POST
      • Variant Update
        PUT
      • Enable/Disable product
        PUT
    • Listing
      • Listing Priority
      • Stock update
      • Price update
      • Bulk Merchant Active
      • Bulk Merchant Inactive
      • Variant Listing Status
      • Variant Listing Count
    • Orders
      • Send invoice
      • Order cancel (canceled by seller)
    • Shipment
      • Create shipment
      • Set shipment status (fulfillment by HG)
      • Cancel shipment
    • Refund
      • Refund create result
  1. Product

Enable/Disable product

Deprecated
PUT
/webhooks/enable-disable
This endpoint is used to enable or disable products. It requires the SKU and an active status flag for each product.

Request

Body Params application/json

Example
{
    "items": [
        {
            "company_id": 3205,
            "sku": "233aadasda",
            "channel": "hepsiglobal_ae",
            "is_active": true
        }
    ]
}

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/enable-disable' \
--header 'Content-Type: application/json' \
--data-raw '{
    "items": [
        {
            "company_id": 3205,
            "sku": "233aadasda",
            "channel": "hepsiglobal_ae",
            "is_active": true
        }
    ]
}'

Responses

🟢200Successful Response
application/json
Body

Example
{}
Modified at 2025-03-20 10:58:46
Previous
Variant Update
Next
Listing Priority
Built with