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

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials

question

Upvotes
Accepted
22 4 4 9

How to request Terms & Conditions Data via DSS REST API with the use of LEI identifier?

Hello Team,


could you please provide a sample request message on how to request Terms & Conditions data with the use of LEI (Issuer LEI) identifier via REST API? In GUI this can be done with the use of Entity List. I can also request T&C data with the use of standard Instrument Identifier List, but don't know how to apply Entity List to the request.

dss
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
79.8k 257 52 75

@Lukasz Ossowski

You can use the EntityIdentifierList in the request message, as shown below.


{
    "ExtractionRequest": {
        "@odata.type": "#DataScope.Select.Api.Extractions.ExtractionRequests.TermsAndConditionsExtractionRequest",
        "ContentFieldNames": [
            "RIC",
            "CUSIP",
            "ISIN",
            "Currency Code",
            "Maturity Date",
            "Total Amount Outstanding",
            "Callable Flag",
            "Issue Date"
        ],
        "IdentifierList": {
            "@odata.type": "#DataScope.Select.Api.Extractions.ExtractionRequests.EntityIdentifierList",
            "EntityIdentifiers": [
                {
                    "Identifier": "UWJKFUJFZ02DKWI3RY53",
                    "IdentifierType": "Lei"
                }
            ]
        }
    }
}
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.