#9038445 account
I am using the Datascope API to create and populate an Instrument List through a python code
In the Datascope GUi, I am able to add an inactive RIC example SPXWa082554000.U
However when I add this RIC through the API, I am getting an error 'Message': 'RIC, SPXWa082554000.U (not found)'}]},
Please advise how to successfully add inactive RIC to instrument list through API ( GUI is working but tedious to do it manually historically )
Sample snippet of API code in python
url = "https://selectapi.datascope.refinitiv.com/RestApi/v1/Extractions/InstrumentLists('0x094917a8097adace')/DataScope.Select.Api.Extractions.InstrumentListAppendIdentifiers"
payload_i = {
"Identifiers": [
{
"Identifier": "SPXq162558000.U",
"IdentifierType": "Ric"
}
],
"KeepDuplicates": False
}
res = rftv.post(url, payload_)