How can I find the DNB keys for a customer?

Question

How can I find the DNB keys that can be used to perform a DNB direct REST call?

Answer

  • Determine the D&B Connector Profile for Each Tenant

    Each Reltio tenant is associated with a D&B Connector profile, which links the tenant to specific connector configurations and mappings. To retrieve the profile name for a tenant, use the following API:

    • Endpoint:
      GET https://test-dnbconnector.reltio.com/b2bIntegration/config/tenants 
       
  • Retrieve D&B Credentials for the Profile

    Once you have the profile name, you can retrieve the D&B credentials (license key and secret) configured for that profile:

    • Endpoint:
      GET https://test-dnbconnector.reltio.com/config/profiles/<profile_name>/mappings/config
    • Replace <profile_name>, <access_token>, <Reltio_environment_URL>, and <tenant_id> with the appropriate values.

The response will include the D&B credentials in the following format:

{
  "dnb": {
    "username": "<D&B_license_key>",
    "password": "<D&B_secret>"
  }
}

The D&B (Dun & Bradstreet) license keys are provided directly by Dun & Bradstreet as part of their data services subscription. These keys (username and password or API key/secret) authenticate your access to D&B’s APIs.

Was this article helpful?
0 out of 0 found this helpful

Comments

0 comments

Please sign in to leave a comment.