According to the DataScope selected user guide (https://developers.refinitiv.com/sites/default/files/DSS_13_0_User_Guide.pdf)
"Individual user accounts are permitted to execute only one Price History extraction at a scheduled time. Simultaneous Price History extractions from the same user account are not allowed to ensure resources are available for all user accounts at any given time."
Does this mean that we can only submit one extraction request at a time? I ran the two requests (listed below) simultaneously against /RestApi/v1/Extractions/ExtractRaw API and was able to successfully retrieve extractions.
***I have only included a small set of IdentifierList, I have tested with a 1000 count of Identifiers
{ "ExtractionRequest": { "@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.PriceHistoryExtractionRequest", "ContentFieldNames": [ "RIC", "Trade Date", "Universal Close Price" ], "IdentifierList": { "@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.InstrumentIdentifierList", "InstrumentIdentifiers": [ { "IdentifierType": "Ric", "Identifier": "GLL" } ] }, "Condition": { "AdjustedPrices": false, "QueryStartDate": "2019-02-02", "QueryEndDate": "2019-02-03" } }<br>
{ "ExtractionRequest": { "@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.PriceHistoryExtractionRequest", "ContentFieldNames": [ "RIC", "Trade Date", "Universal Close Price" ], "IdentifierList": { "@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.InstrumentIdentifierList", "InstrumentIdentifiers": [ { "IdentifierType": "Ric", "Identifier": "AAPL.O" } ] }, "Condition": { "AdjustedPrices": false, "QueryStartDate": "2019-02-02", "QueryEndDate": "2019-02-03" } }
I have a use case where I need to post 2000 instruments and given the limitation of the instrument size (max of 1000) I want to submit two simultaneous request to fetch the extract. Is this possible or will I have to wait until the first is completed?