I'm trying to add attendees to an event with XML-RPC.
I have this python code:
common = xmlrpclib.ServerProxy('{}/xmlrpc/2/common'.format(url))
uid = common.authenticate(db, username, password, {})
models = xmlrpclib.ServerProxy('{}/xmlrpc/2/object'.format(url))
models.execute_kw(db, uid, password, 'calendar.event', 'write', [[85], {'partner_ids': [82]}])
Event ID as well as partner ID are 100% correct.
But after I execute this the partner_ids field is still empty array and no attendees
were added to an event. Why is that?
How do I do this with XML-RPC?
This is the same in Odoo8 and Odoo12