- 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
Virtual Account Wallet Credit Callback
Testing
POST
/
Request
Body Params application/json
Resp_code
string
required
Resp_desc
string
required
txn_type
string
required
data
object
required
Example
{
"Resp_code": "RCS",
"Resp_desc": "Request Completed Successfully",
"txn_type": "PAYIN",
"data": {
"txnid": "W231005171759BXOW",
"utr": "DEPSLIP0090",
"txnamt": "100.00",
"txndt": "2023-10-05 17:17:59",
"txnstatus": "SUCCESS",
"remitter_name": "test Name",
"remitter_account": "7894196541948915",
"remitter_ifsc": "TEST0001234",
"payment_mode": "NEFT"
}
}
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/' \
--header 'Content-Type: application/json' \
--data-raw '{
"Resp_code": "RCS",
"Resp_desc": "Request Completed Successfully",
"txn_type": "PAYIN",
"data": {
"txnid": "W231005171759BXOW",
"utr": "DEPSLIP0090",
"txnamt": "100.00",
"txndt": "2023-10-05 17:17:59",
"txnstatus": "SUCCESS",
"remitter_name": "test Name",
"remitter_account": "7894196541948915",
"remitter_ifsc": "TEST0001234",
"payment_mode": "NEFT"
}
}'
Responses
🟢200Success
application/json
Body
object {0}
Example
{}
Modified at 2025-04-10 11:34:37