Simply Pay (English)
  1. account
Simply Pay (English)
  • Access Guidelines
  • Accessory Code Table
  • Signature Example
  • Solutions to common problems with signatures
  • payment
    • Payment Order Create
      POST
    • Payment Order Query
      GET
  • payout
    • Payout Order Create
      POST
    • Payout Order Query
      GET
  • account
    • Balance Query
      GET
  • webhook
    • payment webhook
    • payout webhook
  1. account

Balance Query

GET
{{HOST}}/api/v2/merchant/balance
Use the appId and key corresponding to the collection part.

Request

Query Params
appId
string 
required
appid
Example:
a0c07e56c281c23c9b0bfd94923cfb9d
sign
string 
required
sign
Example:
a8e8789b76d43d57d3b72fdfb14f482761e05a192a86048b90710f517369f5f8

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 -g --request GET '{{HOST}}/api/v2/merchant/balance?appId=a0c07e56c281c23c9b0bfd94923cfb9d&sign=a8e8789b76d43d57d3b72fdfb14f482761e05a192a86048b90710f517369f5f8'

Responses

🟢200success
application/json
Body
code
integer 
response status code
required
data
object 
Return data
required
currency
string 
Currency Code
required
payinValue
number 
Balance received
required
payoutValue
number 
Balance on behalf of
required
disableValue
number 
Amount frozen
required
sign
string 
signature value
required
msg
string 
Return to text description
required
Example
{
    "code": 0,
    "data": {
        "currency": "INR",
        "payinValue": 2834,
        "payoutValue": 4969.56,
        "disableValue": 68.6,
        "sign": "85a1943d864a2ebdec94bd25fed4b5cb980b960d6e4e24fbdb426e35db7d2b25"
    },
    "msg": "success"
}
Modified at 2024-06-20 07:28:42
Previous
Payout Order Query
Next
payment webhook
Built with