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

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials

question

Upvotes
Accepted
10 3 4 6

how can I get list of all symbols I am subscribed to using TRTH or DSS or any other way?

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.

dss-rest-apidatascope-selectdsstick-history-rest-apidss-soap-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.

1 Answer

· Write an Answer
Upvotes
Accepted
84 2 0 0

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
        },
...
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.

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.