- Introduction
- Process Flow
- Error Codes
- Common APIs
- Payout APIs
- Add NEFT/IMPS BeneficiaryPOST
- Add UPI BeneficiaryPOST
- Delete BeneficiaryPOST
- Get Beneficiary ListPOST
- NEFT/IMPS Validate BeneficiaryPOST
- Validate UPI BeneficiaryPOST
- Payout Transaction RequestPOST
- Direct Payout Transaction RequestPOST
- Transaction StatusPOST
- Transaction Status By Request IDPOST
- Payout Transaction ComplainPOST
- Payout CallbackPOST
- Virtual Account Wallet Credit CallbackPOST
- Service Bank ListPOST
- Service ListPOST
- Payin APIs
Add UPI Beneficiary
Testing
POST
/Payout/Action/addBeneficiary
Request
Header Params
Content-Type
string
required
Example:
application/json
Body Params application/json
username
string
required
password
string
required
requestid
string
required
beneficiary_name
string
required
beneficiary_type
string
required
vpa
string
required
Example
{
"username": "f68db941819657a1434b9bce0cd9811e",
"password": "cabfc6c85d2c1ec57905d6f230784ca8",
"requestid": "gLcirmfYKZB6y0HfTnJM",
"beneficiary_name": "Test API Bene",
"beneficiary_type": "UPI",
"vpa": "8750400900@airtel"
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://uat.nandishatech.com/WS/v1/Payout/Action/addBeneficiary' \
--header 'Content-Type: application/json' \
--data-raw '{
"username": "f68db941819657a1434b9bce0cd9811e",
"password": "cabfc6c85d2c1ec57905d6f230784ca8",
"requestid": "gLcirmfYKZB6y0HfTnJM",
"beneficiary_name": "Test API Bene",
"beneficiary_type": "UPI",
"vpa": "8750400900@airtel"
}'
Responses
🟢200Add UPI Beneficiary
application/json
Body
Resp_code
string
required
Resp_desc
string
required
requestid
string
required
data
object
required
agent_id
string
required
beneficiary_id
integer
required
beneficiary_name
string
required
beneficiary_account_number
string
required
beneficiary_bank_name
string
required
beneficiary_bank_ifsc
string
required
beneficiary_account_type
string
required
status
string
required
added_on
string
required
Example
{
"Resp_code": "RCS",
"Resp_desc": "Beneficiary Added Successfully",
"requestid": "gLcirmfYKZB6y0HfTnJM",
"data": {
"agent_id": "US000001",
"beneficiary_id": 15,
"beneficiary_name": "Test API Bene",
"beneficiary_account_number": "success",
"beneficiary_bank_name": "BHIM (android & iOS)",
"beneficiary_bank_ifsc": "@upi",
"beneficiary_account_type": "VPA",
"status": "ACTIVE",
"added_on": "2023-10-05 13:01:31"
}
}
🟢200Add UPI Beneficiary
Modified at 2025-04-10 11:26:13