I am new to Postman. We are creating new APIs and I want to add them to monitoring and see their Response time and uptime. I have both Get (Listing) , Add, Edit and Delete APis.
I wanted to, how do we monitor requests are Adding a user, deleting a user editing a user as these require an actual user to be added, removed or edited. How can we do this while we are monitoring the requests as we cannot have a unique objectId for a user for every API request to complete successfully.
What I meant was that, when I am deleting a user or editing a user, I would be needing an userId work on?
If I am able to understand your point correctly, you are saying that I write test script in such a way that, First I create a user, get that userId, then run Edit API and then delete it.