Please document the incoming "request" object to the function stub. It is important in the weakly typed languages.
For python, it happens to be a Flask request, which means I have to call request.get_json() to get the request body of POSTs.
But it could also have feasibly been some alternative like Django HttpRequest, which means I use request.body to get the request body of POSTs.
It would also be nice to have an example that parses a request body and/or request URL parameters and provides an example cURL request instead of just returning a string.