Hi There,
There have been a multiple instances of RIC's not resolving to a PermID when they are listed as the primary quote for the Organization and I can see the RIC and associated permID on the UI.
RIC = ABLD.PA
RIC = ALLUX.PA
A few more examples below:
Input
http://url = 'https://api-eit.refinitiv.com/permid/match'
headers = {
'x-ag-access-token':'Nj32ZOfydFavernYLVLFZRWOVdeeTfH7',
'x-openmatch-numberOfMatchesPerRecord':'1',
'x-openmatch-dataType':'Quote',
'Accept':'application/json'
}
match_str = """LocalID,Standard Identifier,Name,Country,Street,City,PostalCode,State,Website
1,RIC:ABLD.PA,,,,,,,
2,RIC:ALDVI_r.PA,,,,,,,
3,RIC:AGTA.PA,,,,,,,
4,RIC:ALIMO.PA,,,,,,,
5,RIC:ALIVA.PA,,,,,,,
6,RIC:ALLUX.PA,,,,,,,
"""
response = requests.post(url=url, headers=headers, data=match_str)
jsontextquote= response.text
Output
('{"ignore":" ' '","unMatched":4,"matched":{"total":2,"excellent":2},"numReceivedRecords":6,"numProcessedRecords":6,"numErrorRecords":0,"headersIdentifiedSuccessfully":["localid","standard ' 'identifier"],"headersNotIdentified":["name","country","street","city","postalcode","state","website"],"headersSupportedWereNotSent":[],"errorCode":0,"errorCodeMessage":"Success","resolvingTimeInMs":43,"requestTimeInMs":43,"outputContentResponse":[{"ProcessingStatus":"OK","Match ' 'Level":"No Match","Original Row ' 'Number":"2","Input_LocalID":"1","Input_Standard ' 'Identifier":"RIC:ABLD.PA"},{"ProcessingStatus":"OK","Match ' 'OpenPermID":"https:\\/\\/permid.org\\/1-236793538869","Common ' 'Name":"ADVICENNE RTS","Match Level":"Matched","Match Ordinal":"1","Original ' 'Row Number":"3","Input_LocalID":"2","Input_Standard ' 'Identifier":"RIC:ALDVI_r.PA"},{"ProcessingStatus":"OK","Match Level":"No ' 'Match","Original Row Number":"4","Input_LocalID":"3","Input_Standard ' 'Identifier":"RIC:AGTA.PA"},{"ProcessingStatus":"OK","Match ' 'OpenPermID":"https:\\/\\/permid.org\\/1-55835449352","Common Name":"GROUPIMO ' 'ORD","Match Level":"Matched","Match Ordinal":"1","Original Row ' 'Number":"5","Input_LocalID":"4","Input_Standard ' 'Identifier":"RIC:ALIMO.PA"},{"ProcessingStatus":"OK","Match Level":"No ' 'Match","Original Row Number":"6","Input_LocalID":"5","Input_Standard ' 'Identifier":"RIC:ALIVA.PA"},{"ProcessingStatus":"OK","Match Level":"No ' 'Match","Original Row Number":"7","Input_LocalID":"6","Input_Standard ' 'Identifier":"RIC:ALLUX.PA"}]}')