Rest API - HTTP Methods
Given a REST API with a user resource at
/users/42 initially having data {"name": "Alice", "age": 30}, what will be the resource data after this PUT request?PUT /users/42
{"name": "Bob"}
