Regular Price and Stock Quantity not updated using WooCommerce API after getting 200 OK
I'm using WooCommerce API to update a specific product. I'm sending the following: { "regular_price": "4000", "stock_quantity": 1 } I'm getting a 200 OK with the PUT request, but the following response: { ... "regular_price": "3000", ... "stock_quantity": 0, ...…