Fetch and Verify your customers’ details

Adhere’s WHT Checker endpoint fetches and verifies customers’ details using a means of identification that contains robust information about an individual.

Request Endpoint

POST: {{BASE_URL}}/api/onboarding/kenya_kyc/wht_checker/

  • Media-Type: application/json

Status Codes

  • 201 Created: The request was successful, and the customer’s information is returned successfully.
  • 400 Bad Request: The request could not be completed due to invalid or missing information.
{
    "obligation_type": "vat",
    "certificate_number": "10000000",
    "withholder_pin": "123456789",
    "payee_pin": "123456789"
}

200 OK Response

{
  "success": true,
  "statusCode": 200,
  "message": "WHT details retrieved",
  "response_code": "00",
  "data": "The Withholding Certificate that you are trying to confirm is VALID."
}