Strapi how to update single product via api tutorial # 6
Strapi how to update single product via api tutorial # 6
In this tutorial we will learn how to update single product if you know id.
You need to send put request from your api client.
http://localhost:1337/api/products/:id
Let suppose your product id is 2. Your response should look like this.
http://localhost:1337/api/products/2
if your id is 30. Your response should look like this.
http://localhost:1337/api/products/30
and so on..

put request update strapi