I am looking for example on how to integrate an external application that provides an API.
i.e. I get a json object from that external application after a request in the form of:
GET ONE: curl -u username:password http://server.com:2222/api/user/1234
Is there a module that show how I would use that collected data and use it in Odoo?
TIA
Hi, whether the application has REST api? Anyway, If you are getting a json object, you can use "loads()" of json library to convert it as a dictionary. Then you can extract the required data from that dictionary and do whatever you need using a python function.