Verify response body contains expected user data
Preconditions (2)
Step 1: Send a GET request to https://api.example.com/users/123
Step 2: Check the response status code is 200
Step 3: Verify the response body contains a JSON object with keys: id, name, email
Step 4: Verify the id value is 123
Step 5: Verify the name value is 'John Doe'
Step 6: Verify the email value is 'john.doe@example.com'
✅ Expected Result: Response status code is 200 and response body JSON contains correct user data as specified