Hello everybody,
With the web interface (https://hosted.datascope.reuters.com/dataScope) I created a list with a few instruments, a schedule with a template and a trigger.
I obtained the data.
I am now trying to obtain it by code, to master the API.
ReportExtraction re = extractionsContext.ReportExtractionOperations.Get("2"); // example Schedule s = extractionsContext.ScheduleOperations.Get(re.ScheduleId); EntityList l = extractionsContext.EntityListOperations.Get(s.ListId);
The two first lines seem OK, but "l", the EntityList, remains null, whereas the identifier in s.ListId corresponds to what appears in the URL in the web interface.
What did I miss ?