Hello Team,Is there a way to limit results through API just like we can do in the GUI??PFA screenshot -Thank you,
Trisha Gehlot
Hello @trisha.gehlot,
By default the DSS will limit the resultset. This is defined in the server driven paging mechanism. The user can change the number of results per page by passing in the appropriate header like this -
POST https://selectapi.datascope.refinitiv.com/RestApi/v1/Search/FuturesAndOptionsSearch HTTP/1.1Authorization: Token <your_auth_token_goes_here>Prefer: odata.maxpagesize=10; respond-asyncContent-Type: application/json; odata=minimalmetadata{ "SearchRequest": { "FileCodes": null, "CurrencyCodes": null, "ExchangeCodes": [ "IMM" ], "StrikePrice": null, "ExpirationDate": null, "IdentifierType": "Ric", "Identifier": "ED*", "PreferredIdentifierType": "Ric" }}
@Gurpreet Thank you for your response!!
In my case, I am sending multiple Ric's and want 100 per underlying Ric.Is there any way to do the same, by sending multiple Ric's or I will need to send each Ric individually??
The issue is not exactly with pagesize,
For Example,
Currently 1 underlying Ric expands to approx 1700 Rics
We want 1 underlying Ric expands to approx 100 Rics
Could you please guide on this?
@trisha.gehlot,
The API does not have a field to limit the expansion to a certain number. You can see the API request structure here. For more information on any content questions, it is best to reach out to content experts at LSEG MyAccount.
Ok, I thought there must be something for API as well, as it is in GUI.No worries.Thank you for your guidance!! @Gurpreet