We are migrating to
"@odata.type": "#DataScope.Select.Api.Extractions.ExtractionRequests.PriceHistoryExtractionRequest"
from
"@odata.type": "#DataScope.Select.Api.Extractions.ExtractionRequests.ElektronTimeseriesExtractionRequest"
Although the API End Point : https://selectapi.datascope.refinitiv.com/RestApi/v1//Extractions/ExtractWithNotes
is same for both odata.type but I'm facing issue is finding the right field name from Terms and Condition Report template
Below are the fields which I was able to access:
"TRBC Business Sector Code",
"TRBC Business Sector Code Description",
"TRBC Economic Sector Code",
"TRBC Economic Sector Code Description",
"TRBC Industry Code",
"TRBC Industry Code Description",
"TRBC Industry Group Code",
"TRBC Industry Group Code Description"
But these are not accessible. Where can I find the right field name of my interest to put in request json body ?
At least help to find alternative to above fields.
============================================
sample JSON body request:
============================================
{
"ExtractionRequest": {
"@odata.type": "#DataScope.Select.Api.Extractions.ExtractionRequests.PriceHistoryExtractionRequest",
"ContentFieldNames": [
"File Code",
"RIC",
"Issuer OrgID",
"Trade Date",
"Asset Type",
"Quote ID",
"Exchange Code",
"Currency Code",
"Quote PermID",
"Trading Status",
"Reference Company",
"ISIN",
"Exchange Description",
"Asset SubType",
"Asset SubType Description",
"Asset Type Description",
"Currency Code Description",
"CUSIP",
"Security Description",
"Ticker",
"Trading Symbol"
],
"IdentifierList": {
"@odata.type": "#DataScope.Select.Api.Extractions.ExtractionRequests.InstrumentIdentifierList",
"InstrumentIdentifiers": [
{ "Identifier": "GOOG.OQ", "IdentifierType": "Ric" }
]
},
"Condition": {
"AdjustedPrices": false,
"QueryStartDate": "2023-03-31T00:00:00.000Z",
"QueryEndDate": "2023-03-31T00:00:00.000Z"
}
}
}
======================================================