Hello,
I am trying to access Officer&Directors data through the Eikon API. I cannot get the full history but only the most recent observation.  Here is an example of the code:
    dt, err = ek.get_data(instr,['TR.CLOSEPRICE.date', 
                                 'TR.OfficerTitle(RNK=R1:R100)',
                                 'TR.OfficerTitleSince(RNK=R1:R100)',
                                 'TR.OfficerName(RNK=R1:R100)',
                                 'TR.OfficerAge(RNK=R1:R100)'],
                                {'SDate': '2010-01-01','EDate':'0', 'Frq':'Y'})
Here is the output:
                                        Officer Title  ... Officer Title Since
0      Chairman of the Board, Chief Executive Officer  ...                2021
1                                       Vice Chairman  ...                2021
2   Senior Vice President and Chief Financial Officer  ...                2018
3           Senior Vice President and General Counsel  ...                2015
4                          Vice President, Controller  ...                2017
5                           Lead Independent Director  ...                2005
6                                Independent Director  ...                2020
7                                Independent Director  ...                2012
8                                Independent Director  ...                2015
9                                Independent Director  ...                2019
10                                                     ...                <NA>
Does anyone have any idea how I can get the history? Specifically, what I am looking at is just the name and bio info of the CEO per year.
Thanks