I can only retrieve download links from python refinitiv.dataplatform package, just like those in web based api playground, with following code, where fileid is a single file id
endpoint_url = 'file-store/v1/files/'+fileid+'/stream'
endpoint = rdp.Endpoint(session, endpoint_url)
result = endpoint.send_request(query_parameters = {"doNotRedirect": 'true'})
is there a way (or alternative set of query_parameters) that I can download file (either csv or json) directly through rdp? I didn't find more detailed instruction of using this package.