Hello,
I would like to retrieve some data from a Stored & Scheduled Workflow (products list, report template and scheduler).
I am using a REST/JSON client in order to retrieve the last ReportExtractionId and associated ExtractedFileIds. I am able to retrieve all the IDs and for downloading this file, I am using the request below:
curl -k -v -H "Authorization: Token ..." -H "Content-Type:application/json" -H "Prefer: respond-async" -H "Accept-Charset: UTF-8" -X GET "https://hosted.datascopeapi.reuters.com/RestApi/v1/Extractions/ExtractedFiles('<ExtractedFileId>')/$value"
and the result is :
{"@odata.context":"https://hosted.datascopeapi.reuters.com/RestApi/v1/$metadata#ExtractedFiles/$entity","ExtractedFileId":"...","ReportExtractionId":"...","ScheduleId":"...","FileType":"Full","ExtractedFileName":"...","LastWriteTimeUtc":"2019-12-12T22:00:16.557Z","ContentsExists":true,"Size":13124,"ReceivedDateUtc":"2019-12-12T22:00:16.557Z"}
I am expecting a CSV file.
May you help me to identify the pb with my request?
Regards
FHA
@FHA,
Assuming you put a valid file ID in the request you posted above, it should deliver the data, yes.
What intzrigues me is that the response you posted is similar to the response of a GET to a different endpoint, i.e.
https://hosted.datascopeapi.reuters.com/RestApi/v1/Extractions/ReportExtractions('<reportExtractionId>')/Files
I say this because it contains the list of files with their Ids, names, size, etc.
To retrieve a file the endpoint should be what you say you used, i.e.
https://hosted.datascopeapi.reuters.com/RestApi/v1/Extractions/ExtractedFiles('<extractedFileId>')/$value
where you replace <extractedFileId> with the Id of the file you want to retrieve (do not use the <> characters). Here is a real world example with a real extractedFileId inserted in it:
https://hosted.datascopeapi.reuters.com/RestApi/v1/Extractions/ExtractedFiles('VjF8MHgwNmUzMzk2ODdhNjEzMjA5fA')/$value
Notes:
Question to you: did you use the Id of your data file in the call, as illustrated in my code snippet above ?
If this does not help: could you please give us the details of your scheduled extraction, i.e. the products list, template and schedule (simply export them, zip them together and post here as attachment). That will help us investigate further.