For a deeper look into our DataScope Select REST API, look into:

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials

question

Upvotes
Accepted
7 1 0 3

Fixed Income instruments Terms and Conditions

We have a situation when requesting reference information for our Fixed Income instrument, our current process is to send a list of ISINs to the Historical Report, 99% there is enough information reported so we then send the same list of ISIN's to the Terms and Conditions report, what we have noticed is that it will always default to the EJV source and return the RIC from this source rather than for EG the RIC from the exchange.

Is this a known behaviour? and is there a way to prioritize which RIC is retuned when using and ISIN?

dss-rest-api#product#contentterms-and-conditions
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Upvotes
Accepted
80.1k 257 52 75

@jason.dance

Thanks for reaching out to us.

You can specify the source property when using ISIN. For example:

If I send this request for US4592001014, it will return IBM.N.

{
    "ExtractionRequest": {
        "@odata.type": "#DataScope.Select.Api.Extractions.ExtractionRequests.TermsAndConditionsExtractionRequest",
        "ContentFieldNames": [
           "RIC", "CUSIP", "ISIN", "SEDOL", "Issuer OrgID", "Currency Code"
        ],
        "IdentifierList": {
            "@odata.type": "#DataScope.Select.Api.Extractions.ExtractionRequests.InstrumentIdentifierList",
            "InstrumentIdentifiers": [               
                { "Identifier": "US4592001014", "IdentifierType": "Isin" }
            ]
        }
    }
}

However, if I specify the source property to AOI, it will return IBM.AOI.

{
    "ExtractionRequest": {
        "@odata.type": "#DataScope.Select.Api.Extractions.ExtractionRequests.TermsAndConditionsExtractionRequest",
        "ContentFieldNames": [
           "RIC", "CUSIP", "ISIN", "SEDOL", "Issuer OrgID", "Currency Code"
        ],
        "IdentifierList": {
            "@odata.type": "#DataScope.Select.Api.Extractions.ExtractionRequests.InstrumentIdentifierList",
            "InstrumentIdentifiers": [               
                { "Identifier": "US4592001014", "IdentifierType": "Isin", "Source":"AOI" }
            ]
        }
    }
}

I hope that this information is of help.

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Upvotes
7 1 0 3

Thank you for your reply. Much appreciated

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Upvotes
7 1 0 3

After speaking to Refinitiv support, requesting Terms and conds information using an ISIN will always result with the primary RIC being returned .

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.