API

Staging

https://developer.staging.datachecker.nl

Production

https://developer.datachecker.nl

We have two environments available for our customers, a staging environment for integration and testing and a production environment. For each environment you will receive different credentials.

EnvironmentAPI Base URL
Staginghttps://developer.staging.datachecker.nl
Productionhttps://developer.datachecker.nl

It's recommended that you implement two separate processes. One to handle the upload of the documents and another process that will handle the processing of all the results. The following sequence diagram is an illustration of the processes.

Workflow

post

/api/v2/oauth/token

Get an OAuth token to provide authorization for follow-up requests. The ClientID and ClientSecret can be submitted with Basic Auth, the scopes are send in the body.

Parameters

body
NameDescription
bodyRequired

The request to retrieve an OAuth token.

Example

{
  "scopes": [
    "productapi.idverify.write",
    "productapi.sdk.read",
    "productapi.secureidlink.write"
  ]
}
FieldTypeDescription
scopesRequired

array[string]

Responses

200

- A successful response.

{
  "accessToken": "acc3ss_t0ken",
  "expiresIn": "3600",
  "tokenType": "Bearer"
}
FieldTypeDescription
accessToken

string

expiresIn

string

tokenType

string

401

- An unauthorized response.

{
  "code": 16,
  "message": "Unauthorized"
}
default

- An unexpected error response.

FieldTypeDescription
code

integer

message

string

details

array[object]

details.@type

string

get

/api/v2/sdk/token

To be able to use one of our SDK’s, you will need to request a SDK Token to unlock the SDK. A SDK Token can be retrieved by sending a GET request to the /api/v2/sdk/token endpoint. Every transaction requires a new SDK Token.

Parameters

query
NameTypeDescription
numberOfChallenges

integer

The amount of challenges that need to be performed for FACE_VERIFY. The default is 2

customerReference

string

A field that can be used to add a customer specific reference for this transaction

validateWatermark

boolean

When this is enabled, then an invisible watermark will be added to the images taken by the FACE_VERIFY SDK. This watermark will be checked when the images are uploaded to the faceverify endpoint

servicesRequired

array[string]

The name of the SDK that you want to unlock

[FACE_VERIFY, AUTO_CAPTURE, NFC]

Responses

200

- A successful response.

{
  "token": "base64 encoded token",
  "transactionId": "ae663ac6-60c1-4cc4-aa72-f05a7c91e68a"
}
FieldTypeDescription
token

string

The token

transactionId

string

The unique ID for the transaction, this ID is used in the polling and in the final result

400

- Unknown service response

{
  "code": 3,
  "message": "parsing list \"services\": \"UNKNOWN\" is not a valid value"
}
default

- An unexpected error response.

FieldTypeDescription
code

integer

message

string

details

array[object]

details.@type

string

post

/api/v2/faceverify

The FaceVerify endpoint can be called with a POST request to upload the selfie challenges that are created by the FACE_VERIFY SDK.

Parameters

body
NameDescription
bodyRequired

Example

{
  "transactionId": "8b4b2d8a-f832-4553-8acf-bdb76aae6763",
  "images": [
    {
      "data": "iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mP8/5+hHgAHggJ/PchI7wAAAABJRU5ErkJggg==",
      "type": "COMPARE"
    },
    {
      "data": "iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mP8/5+hHgAHggJ/PchI7wAAAABJRU5ErkJggg==",
      "type": "LIVE"
    },
    {
      "data": "iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mP8/5+hHgAHggJ/PchI7wAAAABJRU5ErkJggg==",
      "type": "LIVE"
    },
    {
      "data": "iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mP8/5+hHgAHggJ/PchI7wAAAABJRU5ErkJggg==",
      "type": "LIVE"
    }
  ]
}
FieldTypeDescription
transactionIdRequired

string

The transactionId that is retrieved when creating the SDK Token

imagesRequired

array[object]

A list of images. One compare image and multiple live images are required. The live images are created by the FACE_VERIFY SDK

images.dataRequired

string

A base64 string of the image

images.type

string

The type of image. Possible values: ADDITIONAL, BSN_STATEMENT, COMPARE, DRIVING_LICENSE, IDENTITY_CARD, LIVE, PAPER, PASSPORT, PAYROLL_TAX_STATEMENT, PORTRAIT, RESIDENCE_PERMIT, RTW_DOCUMENT, SIGNATURE, WORK_PERMIT

images.additionalDocumentType

string

Mapping for ADDITIONAL or PAPER type documents

images.customerReference

string

A field that can be used to add a customer specific reference for this image

Responses

200

- A successful response.

FieldTypeDescription
success

boolean

400

- Not enough live photos

{
  "code": 3,
  "message": "NotEnoughLivePhotos"
}
default

- An unexpected error response.

FieldTypeDescription
code

integer

message

string

details

array[object]

details.@type

string

post

/api/v2/idverify

The IDVerify endpoint can be called with a POST request to upload the identity document for an IDV_LITE or IDV_STANDARD product. If you want to verify if the person is allowed to work, then you can upload the identity document together with a BSN Statement and/or a TWV document, as a product you can set RTW_STANDARD.

Parameters

body
NameDescription
bodyRequired

Example

{
  "product": "IDV_LITE",
  "images": [
    {
      "data": "iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mP8/5+hHgAHggJ/PchI7wAAAABJRU5ErkJggg==",
      "type": "IDENTITY_CARD"
    }
  ]
}
FieldTypeDescription
transactionId

string

Optional, the transactionId that is retrieved when creating the SDK Token

productRequired

string

A list of images

imagesRequired

array[object]

Possible values: IDV_LITE, IDV_STANDARD and RTW_STANDARD

images.dataRequired

string

A base64 string of the image

images.type

string

The type of image. Possible values: ADDITIONAL, BSN_STATEMENT, COMPARE, DRIVING_LICENSE, IDENTITY_CARD, LIVE, PAPER, PASSPORT, PAYROLL_TAX_STATEMENT, PORTRAIT, RESIDENCE_PERMIT, RTW_DOCUMENT, SIGNATURE, WORK_PERMIT

images.additionalDocumentType

string

Mapping for ADDITIONAL or PAPER type documents

images.customerReference

string

A field that can be used to add a customer specific reference for this image

customerReference

string

A field that can be used to add a customer specific reference for this transaction

userId

string

A valid userId for a user that is defined for your account

Responses

200

- A successful response.

{
  "transactionId": "8b4b2d8a-f832-4553-8acf-bdb76aae6763"
}
FieldTypeDescription
transactionId

string

The unique ID for the transaction, this ID is used in the polling and in the final result

400

- Images are smaller than 640 x 480 pixels

{
  "code": 3,
  "message": "ImagesTooSmall"
}
default

- An unexpected error response.

FieldTypeDescription
code

integer

message

string

details

array[object]

details.@type

string

Additional documents

It is possible to add additional documents to the transactions by supplying the “ADDITIONAL“ type to the image. The driving license check is integrated for the combination of the “ADDITIONAL“ type and the “DRIVING_LICENSE“ additionalDocumentType as long as this is enabled on your customer settings and the product is RTW_STANDARD.

{
  "product": "RTW_STANDARD",
  "images": [
    {
      "data": "iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mP8/5+hHgAHggJ/PchI7wAAAABJRU5ErkJggg=="
    },
    {
      "data": "iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mP8/5+hHgAHggJ/PchI7wAAAABJRU5ErkJggg=="
    },
    {
      "data": "iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mP8/5+hHgAHggJ/PchI7wAAAABJRU5ErkJggg==",
      "type": "ADDITIONAL",
      "additionalDocumentType": "DRIVING_LICENSE"
    },
    {
      "data": "iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mP8/5+hHgAHggJ/PchI7wAAAABJRU5ErkJggg==",
      "type": "ADDITIONAL",
      "additionalDocumentType": "DRIVING_LICENSE"
    }
  ]
}

get

/api/v2/poll

Once the documents are uploaded, you can start calling the polling endpoint with a GET request to see if a result is available. The preferred way to do this is to have a separate polling workflow that will check the results of all your transactions every 60 seconds. If you have not retrieved the polling record or the result within your data retention settings, then the data will be removed.

Responses

200

- A successful response.

{
  "results": [
    {
      "resultId": "1317e999-1ba3-4699-9e60-035af976b76c",
      "transactionId": "ae663ac6-60c1-4cc4-aa72-f05a7c91e68a",
      "product": "IDV_PREMIUM",
      "customerReference": "reference-id",
      "completed": "2023-07-31T08:02:17.499Z"
    },
    {
      "resultId": "7d4a4704-563e-4cec-8eef-ea98c5e4e870",
      "transactionId": "268b8961-0e60-473e-ae03-6d90e32d6c64",
      "product": "IDV_LITE",
      "customerReference": "reference-id-other",
      "completed": "2023-07-31T08:05:19.528Z"
    }
  ]
}
FieldTypeDescription
results

array[object]

results.resultId

string

The unique ID that can be used to retrieve the data from the result endpoint

results.transactionId

string

The unique ID of the transaction, this ID is also returned when the transaction was created

results.product

string

The product of the transaction

results.customerReference

string

The reference that was supplied when the transaction was created

results.completed

string

The UTC timestamp on which the transaction was completed

results.userId

string

The userId which is used to request the transaction

default

- An unexpected error response.

FieldTypeDescription
code

integer

message

string

details

array[object]

details.@type

string

get

/api/v2/result/{resultId}

You can use the resultId of the polling or webhook result to retrieve the data by calling this endpoint with a GET request. When you have successfully retrieved the result, the the corresponding record in the polling result will be removed. You will still be able to retrieve the result with the provided resultId as long as the data is available (depending on your data retention settings).

Parameters

path
NameTypeDescription
resultIdRequired

string

Responses

200

- A successful response.

{
  "result": "APPROVED",
  "transactionId": "ed04064c-1165-4afb-b2b1-96b22f6f1552",
  "faceVerify": {
    "result": "APPROVED"
  },
  "identity": {
    "result": "APPROVED",
    "data": {
      "name": {
        "fullname": "WILLEKE LISELOTTE DE BRUIJN",
        "givenNames": "WILLEKE LISELOTTE",
        "surname": "DE BRUIJN"
      },
      "dateOfBirth": "1965-10-03",
      "dateOfIssuance": "2014-09-03",
      "dateOfExpiry": "2024-09-03",
      "documentType": "PASSPORT",
      "documentNumber": "SPECI2O14",
      "gender": "F",
      "issuingStateOrOrganization": "NLD",
      "nationality": "NLD",
      "personalGovernmentId": "999999990",
      "placeOfBirth": "AMSTERDAM",
      "residencePermitType": "I"
    },
    "documentValidation": {
      "backgroundPrint": "APPROVED",
      "font": "APPROVED",
      "hologram": "APPROVED",
      "lamination": "APPROVED",
      "mrzFont": "APPROVED",
      "opticallyVariableInk": "NOT_APPLICABLE",
      "perforation": "NOT_APPLICABLE",
      "photoIntegration": "APPROVED",
      "stamps": "APPROVED"
    }
  },
  "rightToWork": {
    "result": "APPROVED",
    "data": {
      "vsFromDate": "2024-03-01",
      "vsDueDate": "2024-07-01",
      "twvFromDate": "2024-01-01",
      "twvDueDate": "2024-12-31",
      "personalGovernmentId": "999999990"
    }
  },
  "images": [
    {
      "data": "iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mP8/5+hHgAHggJ/PchI7wAAAABJRU5ErkJggg==",
      "documentType": "PASSPORT",
      "pageType": "FRONT"
    },
    {
      "data": "iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mP8/5+hHgAHggJ/PchI7wAAAABJRU5ErkJggg==",
      "documentType": "PASSPORT",
      "pageType": "BACK"
    },
    {
      "data": "iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mP8/5+hHgAHggJ/PchI7wAAAABJRU5ErkJggg==",
      "documentType": "BSN_STATEMENT",
      "pageType": "ANY"
    },
    {
      "data": "iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mP8/5+hHgAHggJ/PchI7wAAAABJRU5ErkJggg==",
      "documentType": "WORK_PERMIT",
      "pageType": "ANY"
    },
    {
      "data": "iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mP8/5+hHgAHggJ/PchI7wAAAABJRU5ErkJggg==",
      "documentType": "COMPARE"
    },
    {
      "data": "iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mP8/5+hHgAHggJ/PchI7wAAAABJRU5ErkJggg==",
      "documentType": "LIVE"
    }
  ]
}
FieldTypeDescription
transactionId

string

The unique ID of the transaction

customerReference

string

The reference that was supplied when the transaction was created

faceVerify

object

Only included for the transactions started with the faceverify endpoint or for the premium products

faceVerify.result

string

The result of the face verification

[UNKNOWN, APPROVED, DISAPPROVED, TECHNICAL_REJECT]

faceVerify.messages

array[string]

A list of messages when the result is DISAPPROVED or TECHNICAL_REJECT

faceVerify.customerReferences

array[string]

A list of customer references that refer to the images that are used for this result object

identity

object

Included in all the calls to the idverify endpoint

identity.result

string

The result of the identity verification

[UNKNOWN, APPROVED, DISAPPROVED, TECHNICAL_REJECT]

identity.messages

array[string]

A list of messages when the result is DISAPPROVED or TECHNICAL_REJECT

identity.data

object

The data that is extracted from the identification document

identity.data.name

object

identity.data.name.fullname

string

identity.data.name.givenNames

string

identity.data.name.surname

string

identity.data.dateOfBirth

string

Date, "yyyy-MM-dd"

identity.data.dateOfIssuance

string

Date, "yyyy-MM-dd"

identity.data.dateOfExpiry

string

Date, "yyyy-MM-dd"

identity.data.documentType

string

identity.data.documentSubType

string

identity.data.documentNumber

string

identity.data.gender

string

identity.data.issuingStateOrOrganization

string

identity.data.nationality

string

identity.data.personalGovernmentId

string

identity.data.placeOfBirth

string

identity.data.residencePermitType

string

Optional, only available for residence permits

identity.documentValidation

object

The checked security features of the identification document, each field can contain these values: APPROVED, NOT_APPLICABLE

identity.documentValidation.backgroundPrint

string

identity.documentValidation.font

string

identity.documentValidation.hologram

string

identity.documentValidation.lamination

string

identity.documentValidation.mrzFont

string

identity.documentValidation.opticallyVariableInk

string

identity.documentValidation.perforation

string

identity.documentValidation.photoIntegration

string

identity.documentValidation.stamps

string

identity.verifications

object

The result of additional verifications, e.g. the check against sanction lists

identity.verifications.sanctionList

object

The sanction list check

identity.verifications.sanctionList.result

string

The result of the sanction list check

[UNKNOWN, APPROVED, DISAPPROVED, TECHNICAL_REJECT]

identity.verifications.sanctionList.foundOnLists

array[string]

If the value of the field above is HIT, this will list the sanction lists on which the person was found

identity.verifications.sanctionList.verificationResult

string

The result of the sanction list check

[NOT_EXECUTED, HIT, NO_HIT]

identity.verifications.lostAndStolen

object

The lost and stolen check

identity.verifications.lostAndStolen.messages

array[string]

If the result of this check is HIT, this field will list the reason(s) why

identity.verifications.lostAndStolen.verificationResult

string

The result of the lost and stolen check

[NOT_EXECUTED, HIT, NO_HIT]

identity.customerReferences

array[string]

A list of customer references that refer to the images that are used for this result object

rightToWork

object

This is only included if a RTW product is requested

rightToWork.result

string

The result of the right to work verification

[UNKNOWN, APPROVED, DISAPPROVED, TECHNICAL_REJECT]

rightToWork.messages

array[string]

A list of messages when the result is DISAPPROVED or TECHNICAL_REJECT

rightToWork.data

object

The data that is extracted from the right to work documents

rightToWork.data.vsFromDate

string

Date, "yyyy-MM-dd" (RTW_NL)

rightToWork.data.vsDueDate

string

Date, "yyyy-MM-dd" (RTW_NL)

rightToWork.data.twvFromDate

string

Date, "yyyy-MM-dd" (RTW_NL)

rightToWork.data.twvDueDate

string

Date, "yyyy-MM-dd" (RTW_NL)

rightToWork.data.personalGovernmentId

string

(RTW_NL)

rightToWork.data.attachmentDueDate

string

Date, "yyyy-MM-dd" (RTW_BE)

rightToWork.data.vignetteDueDate

string

Date, "yyyy-MM-dd" (RTW_UK)

rightToWork.data.conditions

string

(RTW_UK)

rightToWork.data.details

string

(RTW_UK)

rightToWork.data.endDate

string

Date, "yyyy-MM-dd"

rightToWork.data.dueDate

string

Date, "yyyy-MM-dd"

rightToWork.data.startDate

string

Date, "yyyy-MM-dd"

rightToWork.data.employmentRemark

string

(RTW_NL)

rightToWork.rtwType

string

The type of right to work rules that are applied

rightToWork.customerReferences

array[string]

A list of customer references that refer to the images that are used for this result object

payrollTaxStatement

object

This is only included if a single payroll tax statement has been uploaded

payrollTaxStatement.result

string

The result of the payroll tax statement verification

[UNKNOWN, APPROVED, DISAPPROVED, TECHNICAL_REJECT]

payrollTaxStatement.messages

array[string]

A list of messages when the result is DISAPPROVED or TECHNICAL_REJECT

payrollTaxStatement.data

object

This is only included if a single payroll tax statement has been uploaded

payrollTaxStatement.data.personalGovernmentIdPresent

boolean

payrollTaxStatement.data.signDatePresent

boolean

payrollTaxStatement.data.nameAddressResidencePresent

boolean

payrollTaxStatement.data.signaturePresent

boolean

payrollTaxStatement.data.applyPayrollTax

boolean

payrollTaxStatement.data.payrollTaxDate

string

Date, "yyyy-MM-dd"

payrollTaxStatement.data.signDate

string

Date, "yyyy-MM-dd"

payrollTaxStatement.data.personalGovernmentId

string

payrollTaxStatement.inputData

object

This is only included when input data is provided

payrollTaxStatement.inputData.applyPayrollTax

boolean

payrollTaxStatement.inputData.city

string

payrollTaxStatement.inputData.houseNumber

string

payrollTaxStatement.inputData.payrollTaxDate

string

payrollTaxStatement.inputData.postalCode

string

payrollTaxStatement.inputData.street

string

payrollTaxStatement.inputData.houseNumberAddition

string

payrollTaxStatement.inputData.country

string

payrollTaxStatement.inputData.addressInNld

boolean

payrollTaxStatement.inputData.bsn

string

payrollTaxStatement.inputData.dateOfBirth

string

payrollTaxStatement.inputData.fullname

string

payrollTaxStatement.inputData.nationality

string

payrollTaxStatement.customerReferences

array[string]

A list of customer references that refer to the images that are used for this result object

result

string

The overall result of the transaction

[UNKNOWN, APPROVED, DISAPPROVED, TECHNICAL_REJECT]

messages

array[string]

A list of messages when the result is DISAPPROVED or TECHNICAL_REJECT

images

array[object]

A list of images

images.data

string

A base64 string of the image

images.documentType

string

The type of image. Possible values are BSN_STATEMENT, COMPARE, DRIVING_LICENSE, IDENTITY_CARD, LIVE, PAPER, PASSPORT, PORTRAIT, RESIDENCE_PERMIT, RTW_DOCUMENT, SIGNATURE, WORK_PERMIT

images.metadata

object

images.pageType

string

The page type of the image. Possible values are FRONT, BACK, RESIDENCE_PERMIT_STICKERS, ANY

images.customerReference

string

The reference for the image that was supplied when the transaction was created

files

array[object]

A list of files

files.data

string

A base 64 string of the file

files.documentType

string

The type of the file. Possible value is TRANSACTION_REPORT or PAYROLL_TAX_STATEMENT

drivingLicense

object

Only included if the driving license check is applied

drivingLicense.result

string

The result of the driving license check

[UNKNOWN, APPROVED, DISAPPROVED, TECHNICAL_REJECT]

drivingLicense.messages

array[string]

A list of messages when the result is DISAPPROVED or TECHNICAL_REJECT

drivingLicense.data

object

The data that is extracted from the driving license

drivingLicense.data.name

object

Name object

drivingLicense.data.name.fullname

string

drivingLicense.data.name.givenNames

string

drivingLicense.data.name.surname

string

drivingLicense.data.dateOfBirth

string

Date, "yyyy-MM-dd"

drivingLicense.data.dateOfIssuance

string

Date, "yyyy-MM-dd"

drivingLicense.data.dateOfExpiry

string

Date, "yyyy-MM-dd"

drivingLicense.data.documentNumber

string

drivingLicense.data.issuingStateOrOrganization

string

drivingLicense.data.personalGovernmentId

string

drivingLicense.data.placeOfBirth

string

drivingLicense.data.class

string

drivingLicense.data.classes

array[object]

Array of classes containing the name and dateOfExpiry of each class

drivingLicense.data.classes.name

string

drivingLicense.data.classes.dateOfExpiry

string

drivingLicense.customerReferences

array[string]

A list of customer references that refer to the images that are used for this result object

userId

string

The userId which is used to request the transaction

digitalSigning

object

Optional, only available for Digital Signing product

digitalSigning.result

string

[UNKNOWN, APPROVED, DISAPPROVED, TECHNICAL_REJECT]

digitalSigning.messages

array[string]

digitalSigning.linkedTransactions

array[string]

digitalSigning.customerReferences

array[string]

vog

object

This section is only included if a VOG is requested

vog.createdAt

string

The timestamp when the VOG was requested

vog.status

string

The status at the time of the VOG request

vog.result

string

The result of the VOG verification

[UNKNOWN, APPROVED, DISAPPROVED, TECHNICAL_REJECT]

vog.messages

array[string]

A list of messages when the result is DISAPPROVED or TECHNICAL_REJECT

vog.customerReferences

array[string]

A list of customer references that refer to the images that are used for this result object

additionalDocuments

array[object]

Optional, extracted data from additional documents

additionalDocuments.additionalDocumentType

string

additionalDocuments.customerReferences

array[string]

additionalDocuments.data

object

additionalDocuments.data.socialSecurityNumber

string

404

- Result not found response

{
  "code": 5,
  "message": "Result not found for ID: 9ab3e3a3-0316-4374-9561-54919d09c021"
}
default

- An unexpected error response.

FieldTypeDescription
code

integer

message

string

details

array[object]

details.@type

string

post

/api/v2/vog

This endpoint can be used to create a VOG request

Parameters

body
NameDescription
bodyRequired

FieldTypeDescription
customerReference

string

A field that can be used to add a customer specific reference for this transaction

emailAddressRequired

string

The email address of the user that will receive the Secure ID Link

givenNamesRequired

string

The given names of the person that will request the VOG

languageRequired

string

The initial language that will be used on the Secure ID Link and in the communication with the end user. This is the two letter country code in lowercase

surnameRequired

string

The surname of the person that will request the VOG

userId

string

A valid userId for a user that is defined for your account

vogRequestRequired

object

The object to request a VOG

vogRequest.companyNameRequired

string

The name of the company

vogRequest.jobTitleRequired

string

The job title

vogRequest.profilesRequired

array[string]

A list of numbers that correspond to the VOG profiles (https://justis.nl/producten/verklaring-omtrent-het-gedrag/vog-voor-werkgevers-en-organisaties/screeningsprofielen)

vogRequest.profileTypeRequired

string

The type of the VOG profile. Possible values: GENERIC, SPECIFIC

[GENERIC, SPECIFIC]

Responses

200

- A successful response.

FieldTypeDescription
transactionId

string

default

- An unexpected error response.

FieldTypeDescription
code

integer

message

string

details

array[object]

details.@type

string

Instead of polling for the results we can also configure a result webhook. This will send a POST request with the metadata to a url when the result is ready.

{
  "resultId": "1317e999-1ba3-4699-9e60-035af976b76c", 
  "transactionId": "ae663ac6-60c1-4cc4-aa72-f05a7c91e68a", 
  "product": "IDV_PREMIUM",
  "customerReference": "reference-id",
  "completed": "2023-07-31T08:02:17.499Z"
}

To test the different kind of results, you can add a “dc-test” http header to the request of the IDVerify and SecureIDLink endpoints. This will immediately provide a mocked result that will be available at the polling and result endpoint. This is only available on the staging environment.

The content of the mocked result can change when another product is requested.

  • IDV products will contain the identity object
  • RTW products will also contain the rightToWork object
  • PREMIUM products will also contain the faceVerify object (only available on the SecureIDLink endpoint)
“dc-test” http header valueResult description
APPROVEDAn approved result will be provided
APPROVED_EUA Polish Passport will be returned
APPROVED_NON_EUA Ukrainian Passport will be returned
APPROVED_RPA Dutch Residence permit will be returned
DISAPPROVEDA disapproved result will be provided
TECHNICAL_REJECTA rejected result will be provided

Do you have questions, please contact the DataChecker product support team. You can send an e-mail to product.support@datachecker.nl.