POST
/
kyc
/
verify
/
cac
curl --request POST \
  --url https://devapi.withedge.co/gateway/api/v1/kyc/verify/cac \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'requestId: <requestid>' \
  --data '{
  "rcNumber": "<string>",
  "companyType": "<string>",
  "companyName": "<string>"
}'
{
	"statusCode": 00,
	"message": "Completed successfully"
	"data": {},
	"errors": []
}

Verify Company CAC

Use this endpoint to validate a company’s details against its CAC (Corporate Affairs Commission) registration information.


Request Parameters

requestId
string
required

A unique identifier for the request, used for idempotency.
Example: e0b9f8d0-7a57-4a67-a8b2-4d7c7b5a37c9

rcNumber
string
required

The unique identification number assigned to the company by the CAC.
Example: RC123456

companyType
string
required

The type of company (e.g., Limited Liability Company, Public Company).
Example: Limited Liability Company

companyName
string
required

The registered name of the company.
Example: Doe Enterprises Ltd.

{
	"statusCode": 00,
	"message": "Completed successfully"
	"data": {},
	"errors": []
}