I am developing a module for Odoo v8 with a url controller.
When something goes wrong, I return an error 404 simply with:
return request.not_found()
But when everything is OK I would like to return to the client a status 200 with a json with some data, but have not a clue how to do it.
Any idea?