# Poll DNB Import Job After you have started a D&B import job, you will receive a job id in the response. Use this ID to poll for the status of the job using this endpoint. Once the status is FINISHED, you can see the results in the D&B storage. Endpoint: GET /jobs/dnbimportjobs/{id} Version: 5 Security: apiKey ## Path parameters: - `id` (string, required) ID of the D&B import job. Example: "35f23c03-1c22-45fe-9484-3ffe769325de" ## Response 200 fields (application/json): - `id` (string) Unique identifier of a job. Example: "35f23c03-1c22-45fe-9484-3ffe769325de" - `name` (string) Name of a Job. Example: "Process vendor data." - `description` (string) Detailed description of a Job. Example: "I started this job to improve quality of our data." - `progress` (integer) Progress (%) of the job. Example: "77" - `status` (string) Job execution status. Enum: "ARCHIVED", "UNKNOWN", "CREATED", "PERSISTED", "SCHEDULED", "WAITING", "COULDNT_START", "RUNNING", "FINISHED", "DIED", "CANCELED", "FAILED" - `statusMessage` (string) Message describing the status of the job. Example: "Job is running" - `createdBy` (string) Creator of a resource. Example: "76248934691294444" - `createdAt` (string) Date of creation (ISO 8601-compliant). Example: "2025-09-09T13:03:09Z" - `modifiedAt` (string) Date of modification (ISO 8601-compliant). Example: "2025-09-09T13:03:09Z" - `result` (object) Result of D&B import job. - `result.statistics` (object) Statistics of D&B import job. - `result.statistics.numberOfRecords` (integer) Number of records in the Business Partner Storage. Example: "500" - `result.statistics.numberOfDuplicates` (number) Number of duplicates in input file which have the same DUNS. Example: "5" - `result.statistics.numberOfInserts` (number) Number of newly created records. Example: "100" - `result.statistics.numberOfUpdates` (number) Number of updated records. Example: "100" - `result.statistics.numberOfFailed` (number) Number of records updates / retrieves fails. Example: "50" - `result.statistics.numberOfQuotaExceeded` (integer) Number of not processed records which exceeded defined quota limit. Example: "100" - `result.statistics.numberOfUnknown` (number) Number of non-retrieved records from D&B service. Example: "100"