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

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials

question

Upvotes
Accepted
5 2 9 12

Exact ORG ID or RCP ID match based on Company Name

Hi All,

We need to find the exact name search for companies, client has a list of DUNS(which is no longer supported in DSS) apart from that client has only Company Name, City, State,and address only.

Below is what we tried but we get 4 outputs.

{ "SearchRequest": {
"Name":"Deutsche Bank AG",
"OfficialNameOnly": true,
"DomicileCodes": [],
"CountryOfIncorporationCodes": ["DE"],
"TrBusinessClassificationCodes": null,
"VerifiedOnly": false,
"RegulatedOnly": false,
"IssuersOnly": false,
"ActiveOnly": true,
"IdentifierType": "RcpId",
"PreferredIdentifierType": "RcpId"
}
}

Thanks in advance.

Regards,

Prathibha M

dss-rest-apidatascope-selectdssentity
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
13.7k 26 8 12

@Prathibha.Mariyappa,

I'm not 100% sure of what you are trying to achieve with this Entity Search call, but to narrow down the results to only 1 item I'd suggest you change the following parameters:

"DomicileCodes": ["DE"],
"IssuersOnly": true,
"VerifiedOnly": true,

The first one of these 3 you might want to reconsider, depending on the use case, but the other two are usual settings I believe. Here is the resulting call:

Method: POST

Endpoint: https://hosted.datascopeapi.reuters.com/RestApi/v1/Search/EntitySearch

Body:

{
    "SearchRequest": {
        "ActiveOnly": true,
        "CountryOfIncorporationCodes": ["DE"],
        "DomicileCodes": ["DE"],
        "IssuersOnly": true,
        "Name": "Deutsche Bank AG",
        "OfficialNameOnly": true,
        "RegulatedOnly": null,
        "TrBusinessClassificationCodes": null,
        "VerifiedOnly": true,
        "Identifier": null,
        "IdentifierType": "RcpId",
        "PreferredIdentifierType": "RcpId"
    }
}

Result:

{
  "@odata.context": "https://hosted.datascopeapi.reuters.com/RestApi/v1/$metadata#Collection(ThomsonReuters.Dss.Api.Content.ValidatedEntity)",
  "value": [
    {
      "@odata.type": "#ThomsonReuters.Dss.Api.Search.EntitySearchResult",
      "Identifier": "10459",
      "IdentifierType": "OrgId",
      "Key": "VjF8MHgwMDAzZWYwNmMzYWEwNjg1fEVORU58MTA0NTl8T1JH",
      "Description": "DZ BANK AG Deutsche Zentral-Genossenschaftsbank, Frankfurt am Main",
      "InstrumentType": "Entity",
      "Type": "Business Organization",
      "Domicile": "Germany",
      "CountryOfIncorporation": "Germany",
      "ParentOrgId": "10459",
      "UltimateParentOrgId": "10459"
    }
  ]
}

Hope this helps.

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.