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

Verify Company TIN

Use this endpoint to validate a company’s Tax Identification Number (TIN) for authenticity.


Request Parameters

requestId
string
required

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

number
string
required

The company’s Tax Identification Number (TIN).
Example: 123456789

channel
string
required

The channel used for the TIN verification request.
Example: Web

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