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
This can be simply done by:
from flask import jsonify def myMethod(): .... response = jsonify(data) response.status_code = 200 # or 400 or whatever return response