question

Upvotes
Accepted
1 0 0 1

TuckHistory / retrieve scheduled extraction / REST/JSON

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

dss-rest-apitick-history-rest-apirest-apijson
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.

@FHA

Hi,

Thank you for your participation in the forum.

Is the reply below satisfactory in answering your question?

If yes please click the 'Accept' text next to the most appropriate reply. This will guide all community members who have a similar question.

Otherwise please post again offering further insight into your 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
13.7k 26 8 12

@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:

  • You will not be able to use the same file Id as in my example because it is linked to my account; you need to use the file Id you received when retrieving the extraction report, i.e. the value of "ExtractedFileId".
  • The call to retrieve the data from the server is explained here in the REST tutorial 12.

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.

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.