Hi, I wanted to know if there is a way for getting the list of all the symbols I am subscribed to,
Eg I can see 36000 symbols I am subscribed to in this link
https://hosted.datascope.reuters.com/datascope/usage/Quota
but I want to know if I can send a HTTP/SOAP/etc request to get this symbol list using TRTH/DSS/etc.
as if I am failing to export the symbol list as csv using webapp.
Hello @ykr1314
You can use the /Quota/GetAuthorizedRicList endpoint through our REST API for that. See our REST API Reference Tree under Quota -> GetAuthorizedRicList for additional details.
Here is an example request that retrieves the Cash RICs authorized for your account.
GET https://hosted.datascopeapi.reuters.com/RestApi/v1/Quota/GetAuthorizedRicList(CategoryCode='Cash') Authorization: Token <auth token> Prefer: respond-async
Response:
HTTP/1.1 200 OK { "@odata.context": "https://hosted.datascopeapi.reuters.com/RestApi/v1/$metadata#Collection(ThomsonReuters.Dss.Api.Quota.QuotaRecord)", "value": [ { "AssetClass": "Cash", "AuthorizedValue": ".A12LE", "AuthorizationDate": "2017-10-24T22:20:33.713Z", "AuthorizationDescription": "Extraction by User", "AuthorizationUserId": 9011519 }, { "AssetClass": "Cash", "AuthorizedValue": ".A15LE", "AuthorizationDate": "2017-10-24T22:20:33.713Z", "AuthorizationDescription": "Extraction by User", "AuthorizationUserId": 9011519 }, ...