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
- Endpoint:
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.
- Endpoint:
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.
Comments
Please sign in to leave a comment.