You can get info about the last extraction for a given ScheduleId (i.e GET https://hosted.datascopeapi.reuters.com/RestApi/v1/Extractions/Schedules('xxxxxxxx')/LastExtraction"
But how can you get the list of all extractions for that schedule? Or even better a list of the extractions for that schedule that happened between two dates?
I thought requests like:
- GET https://hosted.datascopeapi.reuters.com/RestApi/v1/Extractions/Schedules('xxxxxxxx')/Extractions" could me the extractions
- or GET https://hosted.datascopeapi.reuters.com/RestApi/v1/Extractions/Schedules('xxxxxxxx')/Extractions?from=01-09-2017&to=15-09-2017 could get me those in the first half of September
could work, however neither these or similar ones I've tried work.
Do you know how to do it? Or where in the docs can I find how to do it? (I'm using Python requests library)