Hello,
I am trying to search data for the RIC IBM.NOI (which is a NYSE Order imbalance RIC) via restful API, however I receive no results for the FIDs I query. When I run the search within the GUI, I receive data without issue, therefore I believe there is a problem with my call.
I am using:
POST https://hosted.datascopeapi.reuters.com/RestApi/v1/Extractions/ExtractRaw
{
"ExtractionRequest": {
"@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.TickHistoryRawExtractionRequest",
"IdentifierList": {
"@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.InstrumentIdentifierList",
"InstrumentIdentifiers": [
{ "Identifier": "IBM.NOI", "IdentifierType": "Ric" }
],
"ValidationOptions": {"AllowHistoricalInstruments": true},
"UseUserPreferencesForValidationOptions": false
},
"Condition": {
"MessageTimeStampIn": "GmtUtc",
"ReportDateRangeType": "Range",
"QueryStartDate": "2019-10-07T12:00:00.000Z",
"QueryEndDate": "2019-10-09T12:10:00.000Z",
"ExtractBy": "Ric",
"SortBy": "SingleByRic",
"DomainCode": "MarketPrice",
"Fids": "4335,4337,4338,4339,4340,4341",
"DisplaySourceRIC": true
}
}
}
When I attempt to retrieve the data I only get the headers, and no actual content.
Can you suggest any fixes?