Good Afternoon!
I am in the process of migrating from DSS SOAP to DSS REST.
We request corporate actions for known instruments.
One thing that happens in the existing codebase is the retrieval of all available Corporate action fields for a certain corporate actions type ("DIV", "CAP", "MNA"):
This is done like so:
var request = new DataDictionaryRequestCorax();
request.CoraxEvents = new[] {"DIV"};
var response = await _extractionService.DefineAsync(request);
So there is this "Define" method on the SOAP API.
Is there an equivalent on the REST API to request all Corporate Action field names for a specific type?
I only found this one, but it does not give me to option to restrict to a specific type:
var validExtractionFields = await extractionContext.GetValidContentFieldTypesAsync(ReportTemplateTypes.CorporateActions);