i have a problem with Python Flask Restful API and data goes to Elasticsearch, when i post a new data with Postman, problem is:
TypeError: Object of type \'Response\' is
Inspired from this bug, here is a shorter way of doing it:
from flask import jsonify, make_response def myMethod(): .... return make_response(jsonify(data), 200)