Dun & Bradstreet · Example Payload

Dnb Direct Plus Generate Access Token Example

Business DataCompany DataD-U-N-S NumberCreditRiskMaster DataData EnrichmentIdentity ResolutionComplianceSupply ChainSales IntelligenceMonitoring

Dnb Direct Plus Generate Access Token Example is an example object payload from Dun & Bradstreet, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "https://plus.dnb.com/v3/token",
    "headers": {
      "Authorization": "Basic <base64(KEY:SECRET)>",
      "Content-Type": "application/json"
    },
    "body": {
      "grant_type": "client_credentials"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
      "token_type": "Bearer",
      "expirationDateTime": "2026-05-23T22:30:00Z"
    }
  }
}