Hi Community,
I'm trying to use that resource to find some RICs by chain, but I'm getting this Validation Error: The Identifier Type CHR is not supported; for this Chain 0#BONOS=BIV.
Request and Response with error message :
        path = "/Search/InstrumentSearch"
        var = {
            "SearchRequest": {
                "IdentifierType": 'ChainRIC',
                "Identifier": '0#BONOS=BIV',
                "PreferredIdentifierType": "Ric"
           }
       }
        x1 = self.s.post(self.url_root+path, json=var)
        res = json.loads(x1.text)
        print(res)
{'error': {'message': 'Validation Error:\r\n\r\nThe Identifier Type CHR is not supported; supported values are: RIC, CSP, ISN, VAL, WPK, COM, SED, PID, PIDQ, SIC, ISM, LOC, AFI, SVM, MIC, LIP, TICKER, ORGID, CIN, SYM, FLI, PPN, FDV, CNC'}}
So, could you help me to understand why it's happening?