Upgrade from Eikon -> Workspace. Learn about programming differences.

For a deeper look into our Eikon Data API, look into:

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials |  Articles

question

Upvotes
Accepted
1 0 0 0

PersonID does only sometimes work to retrieve data

Hello,

On a companies overview page when going to the Officers Detail Page (ESG->Officers) the PersonID for each officer can be retrieved from the URL. See the Example Link below.

But those PersonIDs only sometimes work to retrieve data via the Python API. Even if the data is always available.

Is this a bug or is my query not correct?
Thanks for any help!

Query:

import eikon as ek
from examples.credentials import EIKON_APP_KEY

ek.set_app_key(EIKON_APP_KEY)
PERSON_IDS = ['2346434', '248639', '1042511', '2480652']
x, err = ek.get_data(instruments=PERSON_IDS, fields=['TR.ODOfficerBiography', 'TR.ODOfficerFirstName'])

Example Link: https://emea1.apps.cp.thomsonreuters.com/Apps/Corp?s=VOWG_p.DE&st=RIC&personId=2480652&app=true#/Explorer/EVzCORPxOFFICERSzDETAILzAPP

eikon-data-apipython#contentdata
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Hi @ltr.msc ,

Thank you for your participation in the forum. Is the reply below satisfactory in resolving your query?

If so please can you click the 'Accept' text on the left side of the appropriate reply? This will guide all community members who have a similar question.

Thanks,
AHS

Please be informed that a reply has been verified as correct in answering the question, and has been marked as such.

Thanks,
AHS

1 Answer

· Write an Answer
Upvotes
Accepted
166 2 1 3

Hi,

The PersonID is not applicable to be used in ek.get_data function to retrieve officer information. Instead, only RIC could be used and only information of the chairman of the board could be retrieved.


You could try with following sample code to retrieve biography of each chairman of constituents of the DAX.

x,e = ek.get_data(instruments='0#.GDAXI', fields=['TR.CompanyName','TR.ODOfficerBiography', 'TR.OfficerName','TR.ODOfficerPositionDesc','TR.ODOfficerPermID'])

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.