I found the solution 
I needed to return the request.get_data() as a string and not as bytes.
body = request.get_data(True, True, False)
I found the solution 
I needed to return the request.get_data() as a string and not as bytes.
body = request.get_data(True, True, False)