API Documentation DH-Boss


UPI VERIFICATION API - DHBOSS API

UPI VERIFICATION API - Enter UPI ID and check if it exists. Receive customer name at the bank for valid UPIs. Verify before you onboard. Validate before you pay. Get started today. View Products, The UPI verification API ensures a frictionless money transfer by verifying the name linked to a specific UPI / VPA ID. To validate user VPA address in case UPI collect flow. Query Params. ATTRIBUTE, DESCRIPTION. mid. string mandatory. Our Account Verification API simple & easy way to verify bank account holder and details. Account verification API to ensure that your money goes. UPI Verification API during onboarding and before withdrawals. vpa verification api. - docs.dhboss.com


GET/POST : UPI_VERIFICATION

What is needed to use this API and how it will work is described below -
Your Api Key : Get API In Profile & eKYC

Input Parameters Detail
Name Type Description Mandatory
upi_number String {Enter Value} Yes
apikeyfill String {Enter Value} Yes

Output Parameters Detail
Name Type Description
code integer 200
status string success
response.isVpaValid string 1
response.Holder_Name string Dummy Name So Father Dummy Name
response.UPI_Number string 99999999@PAYTM






Call API URL
https://api.dhboss.com/apicall/upi_verification/
API Call Request Parameters
upi_number=value&apikeyfill=value                                                   
API Call Example Request
<?php

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => 'https://api.dhboss.com/apicall/upi_verification/',
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => '',
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 0,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => 'POST',
  CURLOPT_POSTFIELDS => 'upi_number=99999999@ybl&apikeyfill=api',
 
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;
?>
API Hit Example Response
{
  "code": 200,
  "status": "success",
  "response": {
    "isVpaValid": "1",
    "Holder_Name": "Dummy Name So Father Dummy Name",
    "UPI_Number": "99999999@PAYTM"
  }
}