VyomPay
  1. Common APIs
VyomPay
  • Introduction
  • Process Flow
  • Error Codes
  • Common APIs
    • Wallet Balance Check
      POST
  • Payout APIs
    • Add NEFT/IMPS Beneficiary
      POST
    • Add UPI Beneficiary
      POST
    • Delete Beneficiary
      POST
    • Get Beneficiary List
      POST
    • NEFT/IMPS Validate Beneficiary
      POST
    • Validate UPI Beneficiary
      POST
    • Payout Transaction Request
      POST
    • Direct Payout Transaction Request
      POST
    • Transaction Status
      POST
    • Transaction Status By Request ID
      POST
    • Payout Transaction Complain
      POST
    • Payout Callback
      POST
    • Virtual Account Wallet Credit Callback
      POST
    • Service Bank List
      POST
    • Service List
      POST
  • Payin APIs
    • Generate Merchant Payment Link
      POST
    • Generate Merchant PG Order
      POST
    • Generate Merchant UPI PG QR
      POST
    • Merchant UTR Process
      POST
    • Check Order Status
      POST
    • Payin Callback
      POST
  1. Common 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
api_key
password
string 
required
api_secret
requestid
string 
required
A unique id referencing the current request
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
Previous
Error Codes
Next
Add NEFT/IMPS Beneficiary
Built with