I have installed the Community edition of Odoo 11 and am trying to retrieve data through xml-rpc.
How do I know which objects are available through the api, and which query parameters and their types are available for each object?
In particular I am trying to retrieve all products, and products filtered by category.
the following code
odoo.execute_kw('res.product', 'search', params, function (err, value) {if (err) { return console.log(err); } console.log('Result: ', value);});
returns
'Object res.product doesn\'t exist'