Solution: we would like to merge the query string and form data in PUT/PATCH requests
And, also Delete cannot work well becasue it always wants us to put into form-data. We would like to pass like DELETE http://localhost:5000/api/products/5D18B427-FF94-4D34-9C5A-D5312E407EB5
If we have the PUT request just like
and form-data
We would like to have a JSON object in the downstream service like
Then, we always get the object with
id
isnull
Solution: we would like to merge the query string and form data in PUT/PATCH requests
And, also Delete cannot work well becasue it always wants us to put into form-data. We would like to pass like
DELETE http://localhost:5000/api/products/5D18B427-FF94-4D34-9C5A-D5312E407EB5
ref https://github.com/vietnam-devs/coolstore-microservices/issues/48