We are using DSS Select REST API to extract endofday data .Using below endpoint
https://hosted.datascopeapi.reuters.com/RestApi/v1/Extractions/Extract.
Providing the REST body as :
{
"ExtractionRequest": {
"@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.ElektronTimeseriesExtractionRequest",
"ContentFieldNames": ${market_fields},
"IdentifierList": {
"@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.InstrumentListIdentifierList",
"InstrumentListId": ${market_instrument_list_id}
},
"Condition": {
"StartDate": "{startDate}",
"EndDate": "{endDate}"
}
}
}
Providing market_fields and market_instrument_list_id as list .
In a different thread I got to know its possible to get the total RowCount of extract as Header in the response itself, could you help me how shall I get that programmatically (Any parameters to add/update in above REST body ? ) I want to test this using POSTMAN. We have been using python application which we migrated to scala one.
Many Thanks