hello, i believe this function call works for news stories...
storyResult = ek.get_news_story(storyId, True, True)
it comes back with html data, such as in this example:
example for storyID = urn:newsml:newswire.refinitiv.com:20230112:nTUC5DHVC3:8
return value is:
<html><body><div class="storyContent" lang="en"><style type="text/css">.storyContent * {border-color:inherit !important;outline-color:inherit !important;}</style><p class="tr-story-p1"><span class="tr-dateline">Jan 12 (Reuters)</span><span class="tr-dl-sep"> - </span>German professional kitchen supplier Rational <a data-ric="RAAG.DE" data-type="ric" dir="ltr" href="reuters://REALTIME/Verb=FullQuote/ric=RAAG.DE" translate="no">RAAG.DE</a> said on Thursday it expects sales revenues to exceed one billion euros for the first time in 2022. </p><p>This corresponds to 31% growth year on year, above the company's September forecast of annual growth at 23-28%.</p><p><br/></p><p><br/></p><p class="tr-signoff"> (Reporting by Andrey Sychev in Gdansk, editing by Rachel More)</p><p class="tr-contactinfo">(( <a data-type="email" href="mailto:andrey.sychev2@thomsonreuters.com" translate="no">andrey.sychev2@thomsonreuters.com</a> )</p><p class="line-break"><br/></p><p class="tr-copyright">(c) Copyright Thomson Reuters 2023. Click For Restrictions - https://agency.reuters.com/en/copyright.html</p><p class="line-break"><br/></p><p class="tr-slugline">Keywords: RATIONAL-SALES/</p></div></body></html>
but i am wondering if for "ALERT" type stories, perhaps, get_news_story effectively comes back with blank data / empty html tags every time? i want, certainly, to access the RICs associated with the ALERTs. to do that, if my assumption that get_news_story won't work, then is there a different function besides get_news_story that i can use to help gain access to the RICs associated with the ALERT?
example:
storyId = urn:newsml:newswire.refinitiv.com:20230112:nFWN33X3F9:1
storyResult = ek.get_news_story(storyId, True, True)
return value is ("blank"):
<html><body><div class="storyContent" lang="en"></div></body></html>