HomeGuidesAPI ReferenceChangelogSupport Request
Guides

Ürün Güncelleme - Onaysız Ürün v2

Bu servis ile Trendyol mağazanızda bulunan onaysız ürünleri güncelleyebilirsiniz.

  • Bu servis üzerinden sadece ürün bilgileri güncellenmektedir.
  • Yeni kategori ve kategori özellik değerleri eklenebileceği sebebiyle ürün güncellemelerinizden önce kullandığınız kategori, kategori özellik ve kategori özellik değerlerinin güncel olup olmadığını getCategoryTree, getCategoryAttributes, getCategoryAttributesValues servislerinden kontrol etmenizi öneririz.
  • Her bir istek içerisinde gönderilebilecek maksimum item sayısı 1.000'dir.
❗️

TOPLU İŞLEM KONTROLÜ

Ürün güncelleme işlemi sonrasında response içerisinde yer alan batchRequestId ile ürünlerinizin ve aktarım işleminin durumunu getBatchRequestResult servisi üzerinden kontrol etmelisiniz.

POST updateProducts

Örnek Servis İsteği

{
  "items": [
    {
        "barcode": "barcodelarrtest1",
        "title": "string",
        "description": "string",
        "productMainId": "string",
        "brandId": 1,
        "categoryId": 1,
        "stockCode": "string",
        "origin": "AD",
        "dimensionalWeight": 0,
        "vatRate": 0,
        "deliveryOption": {
            "deliveryDuration": 0,
            "fastDeliveryType": "string"
        },
        "locationBasedDelivery": "string", //"ENABLED", "DISABLED" yada null değerlerini alabilir
        "lotNumber": "string",
        "shipmentAddressId": 0,
        "returningAddressId": 0,
        "images": [
            {
                "url": "trendyol.com/test.jpeg"
            }
        ],
        "attributes": [
            {
                "attributeId": 1,
                "attributeValueId": 1
            },
            {
                "attributeId": 2,
                "customAttributeValue": "String"
            }
        ]
    }
]
}