Hello, I want to get a field called TR.InvestorType using Python. I noticed that when I do:
data, err = ek.get_data(["5000001154","4295955751"], TR.InvestorType, {CURN: USD})
I get the right results. Then when I add for example the ID 4295895691:
data, err = ek.get_data(["5000001154","4295955751","4295895691"], TR.InvestorType, {CURN: USD})
then I get multiple rows for 4295895691 and I don't get the results for the first two companies anymore. Anyone has an idea on why I am getting this behavior?