Is there a way to notify other parties when a property of an object is changed in the database?
Let's say I have a product, and its price was updated from $50 to $40. What is the best practice when it comes to notifying a 3rd party system about this change?
I would like to avoid long polling, and instead rely on a message pushed via websockets. Alternatively, perhaps Odoo could issue a GET request to a callback URL, or call some hook function?