Send POST request with raw XML body and verify response
Preconditions (2)
Step 1: Open Postman and create a new POST request
Step 2: Set the request URL to https://api.example.com/orders
Step 3: Go to the Body tab and select 'raw' option
Step 4: Select 'XML' from the dropdown next to raw
Step 5: Enter the following XML content in the body:<order><id>123</id><item>Book</item><quantity>2</quantity></order>
Step 6: Click Send button
Step 7: Observe the response status code and body
✅ Expected Result: Response status code is 200 OK and response body contains confirmation message with order id 123