The following code fails when exceuting the read method. More specifically the fault is: HrEmployeePrivate.read() missing 1 required positional argument: \'fields\'\n'>
... so the the two questions obviously are: (1) What this field & (2) how to adjust the code that the read works....
======== Python / Odoo 16 ================
model = "hr.employee"
search = [('work_email','=', 'Donald.Duck@somecompany.com')]
method = "search"
operation = xmlrpc.client.ServerProxy(url+"/xmlrpc/object")
list_of_employee_ids = operation.execute(db, internalID, password, model, method, search)
print(list_of_employee_ids)
method = "read"
list_of_employee_detail = operation.execute(db, internalID, password, model, method, list_of_employee_ids)