Update user email using PATCH request
Preconditions (2)
Step 1: Open Postman
Step 2: Set request method to PATCH
Step 3: Enter URL https://api.example.com/users/123
Step 4: In the Headers tab, add 'Content-Type' with value 'application/json'
Step 5: In the Body tab, select raw and JSON format
Step 6: Enter JSON payload: {"email": "newemail@example.com"}
Step 7: Click Send button
✅ Expected Result: Response status code is 200 OK and response body contains updated email 'newemail@example.com'