```
```

Product Update - Approved Product v2

Learn how to update content, variants, and delivery information for approved products in your Trendyol store using our API.

Update the content of approved products in your Trendyol store.

  • Update product content only through this service.
  • Check that your categories, category attributes, and category attribute values are current with the getCategoryTree, getCategoryAttributes, and getCategoryAttributesValues services before updating products.
  • Send a maximum of 1,000 items in each request.
  • You cannot update barcode, productMainId, brandId, categoryId, or slicer and varianter attribute values for approved products.
  • Partial updates are supported for all fields except attribute values. For example, to update only a description, send contentId and description.
  • When updating attributes, send every attribute and attribute value defined for the product in the request body.
CHECK BATCH REQUEST RESULT

After the update, use the batchRequestId returned in the response to check the product and transfer status.

POST updateProducts

Sample request body

{
  "items": [
    {
      "contentId": 9510902,
      "title": "string",
      "description": "string",
      "images": [
        {
          "url": "string"
        }
      ],
      "attributes": [
        {
          "attributeId": 1,
          "attributeValueId": 1
        },
        {
          "attributeId": 2,
          "customAttributeValue": "String"
        }
      ]
    }
  ]
}

Did this page help you?