💻 Tech
One tidbit I discovered today is you can actually create mock servers in Postman. The mock servers will have their own globally accessible URL, which you can share with your team. It’s response body and status can be customized depending on the path. This is helpful if you just want to test a portion of your code (e.g., 3rd party server) to see if it will react correctly given the response data. Once it’s working with a mock server, you can then supply it with the correct configuration values to connect to the actual server.
For more details, check this out: