I am able to get the file name using the below API
https://selectapi.datascope.refinitiv.com/RestApi/v1/Extractions/ReportExtractions('xxxx')/Files.
But what is the API to download the csv file.
Thanks
Sohail
Resolver not registered: react.asset.discussionTagsAsset
Hello @Sohail_Khokhawala
The /Files endpoint will provide you with the list of all the files which are available. The parameter value/ExtractedFileId contains the unique identifier for each file.
You can use this parameter in the URL: https://selectapi.datascope.refinitiv.com/RestApi/v1/Extractions/ExtractedFiles('ExtractedFileId')/$value to download the file contents.
@Sohail_Khokhawala
You can also refer to the step 3 and step 4 in the DSS REST API: Downloading Completed Extraction Files by a Schedule Name aritcle. The article also provides several examples in Postman, Python, anc C#.
Thanks for the quick info.