I made the changes to our system that were communicated to us, but I am unable to make it work.
For example, I make this request:
{
"ExtractionRequest": {
"@odata.type": "#DataScope.Select.Api.Extractions.ExtractionRequests.PriceHistoryExtractionRequest",
"ContentFieldNames": [
"RIC",
"High Price",
"Low Price",
"Universal Close Price",
"Trade Date"
],
"IdentifierList": {
"@odata.type": "#DataScope.Select.Api.Extractions.ExtractionRequests.InstrumentIdentifierList",
"InstrumentIdentifiers": [
{
"Identifier": "AAPL.OQ",
"IdentifierType": "Ric"
}
]
},
"Condition": {
"AdjustedPrices": true,
"QueryStartDate": "2010-05-12T12:43:17.137Z",
"QueryEndDate": "2021-05-12T12:43:17.137Z"
}
}
}
to
https://selectapi.datascope.refinitiv.com/RestApi/v1/Extractions/ExtractRaw
Then I get an ExtractRawResult which I follow to its RawExtractionResults which says to me
{
"error": {
"code": "EntitySetController Unmapped Request ErrorCode",
"message": "EntitySetController Unmapped Request ~/entityset/key/unresolved"
}
}