+
Description
+
REST Mock is a tool allowing to create temporary REST endpoint that allows to test REST clients.
+
+
It's main functions are:
+
+ - Generating random URL for each user, one per user, with persistence for 24h. {check}
+ - Customizable HTTP response status code
+ - Customizable response body and it's content type
+ - Customizable response headers
+ - History of connections to generated endpoint with ability to look into request method, headers and body
+
+
+
Example
+
Let's say we want to create temporary endpoint that returns code 200 with body:
+
{
+ "status": "completed",
+ "warnings": "none"
+}
+
+