Phone to Bank Account Number
This sync API will take the UPI Phone Number as input, drops a small amount to their bank account to get the primary UPI bank Account Number, IFSC, UPI ID and Name of the bank account holder in the response.
API URL: https://api.bulkpe.in/client/phoneToAccount
Method: POST
Auth: Please refer to the Authorization page.
Body
{
"phone": "9000070000", //Phone Number (works only if UPI is enabled in that number.
"reference_id": "Test0121" //unique reference id
}
Response
{
"status": true,
"statusCode": 200,
"data": {
"account_holder_name": "ARUN KUMAR CHANDO",
"accountNumber": "2423232323232323",
"ifsc": "HDFC0000001",
"upi": "arunkumar0023@okhdfc",
"transaction_id": "TRAREF00188852264",
"reference_id": "Test0121",
"amount": 0.01, //credited to the account holder
"payment_mode": "UPI",
"status": "SUCCESS",
"message": "Transaction Success"
},
"message": ""
}