Unify and manage your data

Get profile name from a tenant

Learn how to get a profile name from a tenant for D&B connector

This operation returns the profile name associated with the tenant. To execute this operation you have tot be assigned the READ privilege.

Request

GET {DnBConnectorUri}/config/tenants
Table 1. Parameters
Parameter NameRequired Description
Headers Content-Type Yes Should be "Content-Type: application/json".
Authorization Yes Information about authentication access token in format "Bearer <YourTokenId>" (see details in Authentication API).
environmentUrlYesEnvironment of customer and data tenant.
tenantIdYesCustomer tenant id.
Response
{
    "success": "OK",
    "tenant": {
        "environmentUrl": "https://tst-01.reltio.com",
        "tenantId": "ACC360CT"
    },
    "dataTenant": {
        "environmentUrl": "https://tst-01.reltio.com",
        "tenantId": "ACC360DT"
    },
    "profile": "MyProfile"
}