Testing Pull Requests and Testing in DEV environment

This section talks about the API endpoints used for Bulk Update of product data for various use cases.

The difference between Bulk-Update and Import is that Bulk Update API allows you to update any set of fields for any number of products. This would be typically useful in the scenario when you want to same attribute value across multiple products.

In order to know which all fields are enabled for bulk update you can refer to Meta info document.


PUT/api/v1/bulk-update/any-field

Any Field

This endpoint allows to update a specific attribute with 1 specific value for multiple products. You can provide the list of products to be updated and the attribute code and attribute value to be updated.

For eg, you want to update weight to 12kg for set of 15 products, you can do that using 1 simple API call by passing fieldCode=weight, fieldValue=12, and list of ProductIds.

Request Parameters

NameTypeDescription
productIdsList stringList of Unique GUID of the products to be updated
fieldCodestringUnique attribute field code to be updated
fieldValuestringAttribute value to be updated