How can obtain current dividend data using c# API?

Options

Hello,


I am trying to obtain current dividend data from BBVA.MC for example, but I don't know the "Content field name" that I need or maybe is not a extractionRequest what I need.

The code with I am trying to do it is this:

var extractionRequest = new EndOfDayPricingExtractionRequest
{
IdentifierList = SubjectIdentifierList.CreateInstrumentIdentifierList(new[]
{
SubjectIdentifier.CreateInstrumentIdentifier("BBVA.MC", IdentifierType.Ric,
null, null, null, null)
}, null, false),
ContentFieldNames = new[] {
"Ask Price", "Asset Category", "Asset ID", "Asset Status", "Asset SubType",
"Asset Type", "Bid Price", "Block Trades" }
};

So, to obtain the dividends, I need just to add some "ContentFieldName" or Do have I to change the entire request?


Thank you very much

Best Answer

Answers