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

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials

question

Upvotes
Accepted
18 2 9 11

Open Access RICs verification via DSS REST API

Hello, is there any way to verify if an instrument is Open Access or not, without the necessity of running a report and triggering usage? For example, uploading it to instrument list and verifying if it gets added or not?

dss-rest-apidatascope-selectdss
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.

1 Answer

· Write an Answer
Upvotes
Accepted
648 5 4 6

@lukasz.ossowski

Try this example,

REQUEST
https://hosted.datascopeapi.reuters.com/RestApi/v1/Extractions/InstrumentListValidateIdentifiers
{
    "InputsForValidation": [
        {
            "Identifier": "EURAB6E10Y=ICAP",
            "IdentifierType": "Ric"
        }
    ],
    "KeepDuplicates": true
}


RESPONSE
{
    "@odata.context": "https://hosted.datascopeapi.reuters.com/RestApi/v1/$metadata#ThomsonReuters.Dss.Api.Extractions.SubjectLists.InstrumentsValidateIdentifiersResult",
    "ValidatedInstruments": [
        {
            "Identifier": "EURAB6E10Y=ICAP",
            "IdentifierType": "Ric",
            "Source": "N/E",
            "Key": "VjF8MHgyMDAwMDAwMDAwMDAwMDAwfDB4MjAwMDAwMDAwMDAwMDAwMHxOL0V8TU9OWXxNT05ZfERPQVl8WXx8RVVSQUI2RTEwWT1JQ0FQfA",
            "Description": "",
            "InstrumentType": "MoneyMarket",
            "Status": "Valid"
        }
    ],
    "ValidationResult": {
        "ValidInstrumentCount": 1,
        "OpenAccessSegments": [
            {
                "Code": "Y",
                "Description": "Money Market",
                "Count": 1
            }
        ],
        "StandardSegments": [],
        "ValidationDuplicates": [],
        "Messages": []
    }
}
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.