I have a .Net Web Api(http://someIP:port/path) to handle HTTP POST request. I want to create mock server in postman. I followed this page, then I got a mock url like this:
I'm new to Postman mock server, not sure why mock url starts with "https" instead of "http" (my web api only handle http request,not https request). How to create mock url starting with http? Thanks in advance!
Found out that you can just update mock url by removing 's' from 'https' to change to http for testing. It works.