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.
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 service with the batchRequestId in the response.
POST updateProducts
Sample Service Response
{
"items": [
{
"contentId": 9510902,
"title": "string",
"description": "string",
"images": [
{
"url": "string"
}
],
"attributes": [
{
"attributeId": 1,
"attributeValueIds": [
1
]
},
{
"attributeId": 2,
"attributeValue": "String"
}
]
}
]
}Updated 4 days ago