Updates a product attribute value across all products matching the old value.
Products.UpdateProductAttributes(ProductUpdateProductAttributesParamsparameters, CancellationTokencancellationToken = default)
PUT/api/v2/public/products/attributes
Updates a product attribute value across all products matching the old value.
ProductUpdateProductAttributesParams parameters = new()
{
Attribute = "x",
NewValue = "x",
OldValue = "x",
};
await client.Products.UpdateProductAttributes(parameters);