- 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
Wallet Balance Check
Testing
POST
/Payout/Fetch/get_account_balance
Request
Header Params
Content-Type
string
required
Example:
application/json
Body Params application/json
username
string
required
password
string
required
requestid
string
required
Example
{
"username": "********",
"password": "********",
"requestid": "AwaH5IiZs7K00INwNosXx"
}
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/Fetch/get_account_balance' \
--header 'Content-Type: application/json' \
--data-raw '{
"username": "********",
"password": "********",
"requestid": "AwaH5IiZs7K00INwNosXx"
}'
Responses
🟢200Balance Check
application/json
Body
Resp_code
string
optional
Resp_desc
string
optional
data
array [object {2}]
optional
wallet_name
string
optional
balance
string
optional
Example
{
"Resp_code": "RCS",
"Resp_desc": "Request Completed Successfully",
"data": [
{
"wallet_name": "Main Wallet",
"balance": "487040.55"
}
]
}
Modified at 2025-04-10 11:37:45