```
```

Product Update - Approved Product v2

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

This method allows you to update the content of approved products in your Trendyol store.

  • Only product content information is updated through this service.
  • Since new categories and category attribute values ​​can be added, we recommend checking whether the categories, category attributes, and category attribute values ​​you are using are up-to-date using the getCategoryTree, getCategoryAttributes, and getCategoryAttributesValues ​​services before updating your products.
  • The maximum number of items that can be sent in each request is 1,000.
  • For approved products, the "barcode", "productMainId", "brandId", "categoryId", and slicer or varianter attribute values ​​are not updated.
  • Partial updates are supported, excluding attribute values. (For example, if you only want to update the description, it is sufficient to send "contentId": 9510902 and "description": "string".)
  • If you want to update any of the attributes, all attributes and values ​​under the product must be sent in the request body.

and values ​​under the product must be sent in the request body.

and values ​​under the product must be sent in the request body.

    <NoLinkCallout type="danger" title="CHECK BATCH REQUEST RESULT">
      After the product create process, you need to check the status of your products and the transfer process via the **[getBatchRequestResult](/en/docs/trendyol-marketplace/product-integration/check-batchrequest-r

POST updateProducts

atchRequestId in the response.
    </NoLinkCallout>

    ### POST updateProducts

    <NoLinkCallout type="info" title="PROD">
      [https://apigw.trendyol.com/integration/product/sellers/\{sellerId}/products/content-bulk-update](https://apigw.t

<NoLinkCallout type="info" title="STAGE">
  [https://stageapigw.trendyol.com/integration/product/sellers/\{sellerId}/products/content-bulk-update](https://stageapi

Sample Service Response

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


Did this page help you?