Skip to main content

Verify person identity using CAC number

POST /api/v1/Identity/verification/cac

Description

This endpoint is used to verify a person's identity using their Corporate Affairs Commission (CAC) number.

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 CacRequest schema.

URL: /api/v1/Identity/verification/cac

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:

bashCopy codePOST /api/v1/Identity/verification/cac
Request Body:
{
"cac_number": "RC123456",
"name": "ABC Corporation",
"date_of_registration": "2000-01-01T12:00:00.000Z"
}

Response:

jsonCopy codeHTTP/1.1 200 OK
{
"cac_number": "RC123456",
"name": "ABC Corporation",
"date_of_registration": "2000-01-01T12:00:00.000Z"
}

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)

    {
"rc_number": "<string>",
"company_name": "<string>",
"company_type": "<string>"
}