I'm trying to do an historical reference request but I'm getting nothing returned. This is happening with every product code I'm trying. It stopped working yesterday. I'm the only one running the extraction, so it's not because there's more than one request being made at a time. My request code is below. Just for reference, the Product ric I'm using at the moment is LCOmmV1.
requestHeaders={
"Prefer":"respond-async",
"Content-Type":"application/json",
"Authorization": "token " + token
}
HistRefUrl = 'https://selectapi.datascope.refinitiv.com/RestApi/v1//Extractions/ExtractWithNotes'
requestBody={
"ExtractionRequest": {
"@odata.type": "#DataScope.Select.Api.Extractions.ExtractionRequests.HistoricalReferenceExtractionRequest",
"ContentFieldNames": [
"RIC",
"Start date",
"Change Date",
"Expiration Date"
],
"IdentifierList": {
"@odata.type": "#DataScope.Select.Api.Extractions.ExtractionRequests.InstrumentIdentifierList",
"InstrumentIdentifiers": [
{
"Identifier": "LCOmmV1",
"IdentifierType": "Ric"
}
],
"ValidationOptions": {
"AllowHistoricalInstruments": 'true'
},
"UseUserPreferencesForValidationOptions": 'false'
},
"Condition": {
"StartDate": "2015-01-01T00:00:00.000Z",
"EndDate": todaysDate + "T" + "00:00:00.000Z"
}
}
}