I'm wondering what is the difference between endpoints in Odoo API. To my knowledge there are three:
http://....../xmlrpc
http://....../jsonrpc
http://....../web/dataset
We can send for example search_read request with each of them and they all are similar.
For example we can send request to "xmlrpc/2/object" using RPC function "execute_kw"
Or we can send request to "jsonrpc" with method "execute"
Or we can send request to "/web/dataset/call_kw" and so on...
I couldn't find comprehensive explanation why is that. What would the best way of sending request.
Did you find out about this? I'm also wondering about it, and cannot find documentation.