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?
For a deeper look into our DataScope Select SOAP API, look into:
Overview | Quickstart | Documentation | Downloads | Tutorials
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?
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": [] } }