Hello I want to get historical CDS prices via the DSS REST API
I tried the following extraction request:
{
"ExtractionRequest": {
"@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.PriceHistoryExtractionRequest",
"ContentFieldNames": [
"RIC",
"Credit Default Swap Basis1",
"Credit Default Swap Basis2",
"Credit Default Swap Basis3",
"Trade Date"
],
"IdentifierList": {
"@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.InstrumentIdentifierList",
"InstrumentIdentifiers": [{
"IdentifierType": "Ric",
"Identifier": "GE.N"
}]
},
"Condition": {
"AdjustedPrices": false,
"QueryStartDate": "2019-02-02",
"QueryEndDate": "2019-09-03"
}
}
}
I get back the following
{
'IdentifierType': 'Ric',
'Identifier': 'GE.N',
'RIC': 'GE.N',
'Credit Default Swap Basis1': None,
'Credit Default Swap Basis2': None,
'Credit Default Swap Basis3': None,
'Trade Date': '2019-08-09'
},
As you can see nothing is coming back for the CDS fields.
Any help is appreciated.