Skip to main content

Verify individual credit bureau

POST /api/v1/Identity/verification/individual-credit-bureau

Description

This endpoint is used to verify individual credit bureau information.

Headers:

  • Accept-Language: optional, allows changing default response message language, type: string

Content-Type:

  • text/plain
  • application/json
  • text/json

ApiKey:

  • No API key required

Request Body:

  • An object of the IndividualCreditBureauRequest schema.

URL: /api/v1/Identity/verification/individual-credit-bureau

Query Parameters:

  • None

params:

  • version: string, required

Response: The response is a "Success" status with a code of 200.

Error Codes:

  • 400: Bad Request
  • 404: Resource not found
  • 500: Internal server error

Example:

POST /api/v1/Identity/verification/individual-credit-bureau
Request Body:
{
"nationalId": "1234567890"
}

Response:

HTTP/1.1 200 OK
{
"name": "John Doe",
"dateOfBirth": "1990-01-01",
"address": "123 Main St, Anytown, USA",
"verificationStatus": "Valid"
}

Headers


Accept-Language Change default response message language from English(en). Available languages fr,en Content-Type application/json

Accept text/plain

Body raw(json)

{
"mode": "<string>",
"customer_name": "<string>",
"customer_reference": "<string>",
"number": "<string>",
"dob": "<string>"
}