Update user information using PUT request
Preconditions (2)
Step 1: Open Postman application
Step 2: Set HTTP method to PUT
Step 3: Enter URL https://api.example.com/users/123
Step 4: In the Body tab, select raw and JSON format
Step 5: Enter JSON payload: {"name": "John Doe", "email": "john.doe@example.com"}
Step 6: Click Send button
✅ Expected Result: Response status code is 200 OK and response body contains updated user information with name 'John Doe' and email 'john.doe@example.com'