Unify and manage your data

Checking if a Single Entity is Present

Using this API you can send a request to D&B to list the DUNS registered for monitoring. The API returns information on whether a DUNS number is registered or not.

Request

GET {DnBConnectorUri}/monitoring/registration
Table 1. Parameters
ParameterNameRequired Description
HeadersContent-TypeYes Must be Content-Type: application/json.
EnvironmentUrlYesEnvironment URL of the tenant.

For example: https://dev.reltio.com

AuthorizationYesReltio access token in the form Bearer: <token>, see Authentication API.
TenantIdYesTenant Id.
D&B-UserNoDnB account username or Consumer Key in Direct+.
Note: Not a required parameter if D&B Token is specified.
DnB-PasswordNoDnB account password or Consumer Secret in Direct+.
Note: Not a required parameter if D&B Token is specified.
DnB-TokenNoDnB token in form <<Token>>.
Note: Not a required parameter if the username and password of the D&B account is specified.
DnB-RegistrationYesDnB registration identifier.
QueryentityURIYesEntity URIs in entities/XXXX format.

Example:

GET https://tst-01-dnbconnector.reltio.com/monitoring/registration?entityURI=entities/1SrafuSI
Response: { "success": "Fail", "message": "DNB0001: DnB error: DUNS not found DnB error code: 10001", "entities": [ "entities/1SrafuSI" ] }

Response:

{ "success": "OK", "message": "21110: DUNS is available in registration", "entities": [ "entities/1SrafuSI" ] }
Was this content helpful?