Within a Flask app, I have the following ajax call:
$.ajax({ url: \"{{ url_for( \'bookings.get_customer\' ) }}\", type: \"POST\",
You need to do
return jsonify(result=your_result)
Also check documentation which could be really helpful.