How do I correctly use the symbology lookup API to retrieve PermIDs for a list of SEDOLS (with potentially inactive SEDOLs on the list). I have used the showHistory=True functionality as suggested in an earlier Q&A
https://community.developers.refinitiv.com/questions/92124/retrieve-mapping-of-inactive-sedols-to-organizatio.html
However, there appears to be a problem with the JSON output returned in that the PermID results returned are not necessarily in the same order as the SEDOL list.
In the example below, the first SEDOL 6499323 should be Kumho Petrol but Korea Electric is returned first.
Example body:
{
"from": [
{
"identifierTypes": [
"SEDOL"
],
"values": [
"6499323",
"6497112",
"6495730",
"6495428"
]
}
],
"to": [
{
"objectTypes": [
"organization"
],
"identifierTypes": [
"PermID"
]
}
],
"reference": [
"name",
"status",
"classification"
],
"type": "auto",
"showHistory": true
}
Thanks.