DEV Community

Discussion on: Quick API Debugging Tip

Collapse
 
dowenb profile image
Ben Dowen

Where possible - include the response as well as the cURL Request.

And make sure to call out the steps you took to construct the request (if you captured from Chrome DevTools, remember to list the steps you took on the site before this request was made!). Also call out what you expected to happen, and what actually happened.

Go one step further, if you hit a "500" class error response (server errors), look for logs on the application/web server.

I appreciate not all testers can go this far in all cases - but if you can, you will get kudos from your Devs.