Hello everyone.
I have a problem obtaining partners using the Odoo webapi. Now the method that I do in my application is doing a bucle of all my ids and, for every id, calling the webapi passing the Id to get the partner.
For example:
for ( i=0; i<partners.length; i++)
loadPartner(partner(i).id)
In terms of time, this are so slow and heavy (if you have 100 partners, you will do 100 webapi calls). I looked for this in the documentation but I don't see anything about this. So, exists the possibility for get all partners by passing a list of ids? I think that this will be more efficient and fast.
Thank you @Odoo Tools, it worked like a charm :)