PayZApp-Gateway
  1. Other
PayZApp-Gateway
  • Getting started
  • Authentication
  • Callback Description
  • Error Description
  • Deposit
    • Create Invoice
      POST
    • Query Invoice
      GET
    • Invoice Callback
      POST
  • Transfer
    • Unified Transfer
      • Getting Strared
      • India-INR
      • Brazil-BRL
      • Blockchain-USDT
    • Query Transfer
      GET
    • Transfer Callback
      POST
  • UPI
    • Query UTR
      GET
    • UTR Repair
      POST
  • Other
    • Get Balance
      GET
  1. Other

Get Balance

GET
/mer/balance/{currency}

Request

Path Params
currency
string 
required
INR | USDT | BRL and other currency units
Example:
INR

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 GET '/mer/balance/INR'

Responses

🟢200成功
application/json
Body
code
integer 
required
data
object 
required
currency
string 
Currency Unit
required
aviAmount
integer 
Amount Available
required
proAmount
integer 
Amount in progress
required
freAmount
integer 
Frozen amount
required
totalBalance
integer 
Total balance
required
credit
integer 
Credits
required
digits
integer 
Currency decimal places
required
Need to calculate through decimal places to get the real amount
msg
string 
required
Example
{
    "code": 0,
    "data": {
        "currency": "INR",
        "aviAmount": 141326009,
        "proAmount": 631153,
        "freAmount": 0,
        "totalBalance": 141957162,
        "credit": 5000000,
        "digits": 2
    },
    "msg": ""
}
Modified at 2023-09-18 19:22:38
Previous
UTR Repair
Built with