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

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials

question

Upvotes
Accepted
1 0 0 1

DSS API question from client

Hello Team,

Client is running below extraction via API. Client is not getting any result .Extraction is blank and even there is not notes file generated. Client s not made change to script. The only thing they did is change the RIC. RIC which you in this script is active. Not sure why client is not able to pull the data. appreciate your view and reply on the same.

Client DSS ID is 9008557



private static void ExtractMoneyMarket2Data(DataTable MMkt2exceldata)

{

try

{

#region Declare inputs

List<InstrumentIdentifier> identifiers2 = new List<InstrumentIdentifier>();

var identifiers = new[] {

new InstrumentIdentifier

{

IdentifierType = IdentifierType.Ric,

Identifier = "A+NBF10YF=FIMD"

}

};

foreach (DataRow row in MMkt2exceldata.Rows)

{

identifiers2.Add(

new InstrumentIdentifier

{

IdentifierType = IdentifierType.Ric,

Identifier = row[0].ToString()

}

);

identifiers = identifiers2.ToArray();


}


// Identify the desired output fields for Money MKT 2 Extraction.


var outputFields = new[] { "RIC", "Instrument ID", "Security Description", "Quote Date", "Benchmark Spread" };


var extractionsContext = ContextHelper.CreateExtractionsContext();

try

{

var extractionRequest = new IntradayPricingExtractionRequest

{

IdentifierList = SubjectIdentifierList.CreateInstrumentIdentifierList(identifiers, null, false),

ContentFieldNames = outputFields

};

#endregion

//try

//{


sessionId = extractionsContext.ClientSessionId;

var extraction = extractionsContext.ExtractWithNotes(extractionRequest);

var rcid = extractionsContext.Diagnostics.LastCall == null ? null : extractionsContext.Diagnostics.LastCall.RequestCorrelationId;

//udf1 = extractedRows.First();

var notes = extraction.Notes;

string strnotes = notes[0].ToString();

var extractedRows = extraction.Contents;



LogStatus("MoneyMarket2 count - " + extractedRows.Count);

LogStatus("MoneyMarket2 Session ID - " + sessionId.ToString());

LogStatus("MoneyMarket2 Correlation ID - " + rcid.ToString());

LogStatus("MoneyMarket2 Notes - " + strnotes);

#region Save File


string MMktcsvfilepath = strDirName + "\\" + WebApplication1.ApiSettings.Default.MoneyMKT2CSVFilePath;


if (File.Exists(MMktcsvfilepath))

{

using (TextWriter tw = new StreamWriter(MMktcsvfilepath))

{

tw.WriteLine(ApiUtility.ToCsvLine(extractedRows.First().DynamicProperties.Keys));

foreach (var row in extractedRows)

tw.WriteLine(ApiUtility.ToCsvLine(row.DynamicProperties.Values));

tw.Close();

}

}

else

{

File.Create(MMktcsvfilepath).Dispose();

using (TextWriter tw = new StreamWriter(MMktcsvfilepath))

{

tw.WriteLine(ApiUtility.ToCsvLine(extractedRows.First().DynamicProperties.Keys));

foreach (var row in extractedRows)

tw.WriteLine(ApiUtility.ToCsvLine(row.DynamicProperties.Values));

tw.Close();

}


}

}

catch (Exception ex)

{

var rcid = extractionsContext.Diagnostics.LastCall == null ? null : extractionsContext.Diagnostics.LastCall.RequestCorrelationId;

LogErrorID(ex, "ExtractMoneyMarket2Data", sessionId, rcid);

}

#endregion


}

catch (Exception ex)

{

LogError(ex, "ExtractMoneyMarket2Data", sessionId);

return;

}

}


#technologydss-rest-api
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.

@Naveen.Stella

Hi,

Thank you for your participation in the forum.

Is the reply below satisfactory in answering your question?

If yes please click the 'Accept' text next to the reply. This will guide all community members who have a similar question.

Otherwise please post again offering further insight into your question.

Thanks,

AHS

Please be informed that a reply has been verified as correct in answering the question, and has been marked as such.

Thanks,


AHS

1 Answer

· Write an Answer
Upvote
Accepted
22.1k 59 14 21

Hi @Naveen.Stella,

Please ask the client to download the C# sample application from the DSS website and try out working samples. The samples contain working code snippets which they can then integrate within their application. Here is a screenshot of the IntradayPricingExtractionRequest from the sample:

1686243900936.png




1686243992685.png (167.9 KiB)
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.

Thanks sure.. but the question is there any issue in client script... Client is using it for long time suddenly its not fetching anything
If the app was working earlier and suddenly stopped working, then we wouldn't be able to tell why. It is best to reach out to the DSS product team who can look at the server logs and provide guidance on what might be going wrong.


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.