Rest API - HTTP Methods
A REST API uses PUT to replace a nested resource like
/users/5/address. The original address is {"street":"1st Ave","city":"NY","zip":"10001"}. The client sends a PUT with {"street":"2nd Ave","city":"NY"}. What will be the final address stored?