I have a web API that I am using Postman to test. When I click on the "SEND" button, Postman sends data to the web API so I am able to test the web API but I would like to view the data that Postman is sending to the web API. How can I do view this?
Asked
Active
Viewed 843 times
1
-
https://stackoverflow.com/questions/33793629/ sounds like what you need – Timekiller Aug 11 '19 at 18:48
2 Answers
1
If you'd like to view the raw request, one way would be to select the Code option and then choose Curl. The Code option is under the Send button, right of the Params/Tests menu bar.

xhermit
- 501
- 1
- 7
- 19
0
If you are using HTTP GET/DELETE, you can find data in URL of request and HTTP Header. If you are using POST, then you can find in Request body.

khacsinhcs
- 179
- 1
- 16