Outline

Backend flow for PUT

In this video, we learned what happens in our .NET backend when a PUT request is made.

The important piece to remember about PUT is that the ID of the item you want to edit MUST exist. And when making your request the ID passed in the URL must match the ID of the item in your payload. Otherwise, the PUT request will fail.

 

I finished! On to the next chapter