Hello. We really need your help!
We are trying to switch from the old SOAP API to the new REST API. But we encounter several problems. Here is one of them:
We cannot receive information for the AAPL ticket, although with an identical request for the IBM ticket, we get an adequate answer.
Request #1 [IBM]:
{"ExtractionRequest":{"@odata.type":"#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.TermsAndConditionsExtractionRequest","ContentFieldNames":["Parent Long Name","Ticker","CUSIP","ISIN","Currency Code"],"IdentifierList":{"@odata.type":"#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.InstrumentIdentifierList","InstrumentIdentifiers":[{"Identifier":"IBM","IdentifierType":"Ric"}]},"Condition":null}}
Response #1 [IBM]:
[{"IdentifierType":"Ric","Identifier":"IBM","Parent Long Name":null,"Ticker":"IBM","CUSIP":null,"ISIN":null,"Currency Code":"USD"}]
Request #2 [AAPL]:
{"ExtractionRequest":{"@odata.type":"#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.TermsAndConditionsExtractionRequest","ContentFieldNames":["Parent Long Name","Ticker","CUSIP","ISIN","Currency Code"],"IdentifierList":{"@odata.type":"#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.InstrumentIdentifierList","InstrumentIdentifiers":[{"Identifier":"AAPL","IdentifierType":"Ric"}]},"Condition":null}}
Response #2 [AAPL]:
[{"IdentifierType":"Ric","Identifier":"AAPL","Error":"Not found"}]
In the old SOAP API, we received the values of these fields without problems. No hints were found in the documentation. Tell me what is our mistake?