🧮Getting payment system balances
The integration of our service into your platform is expected to be done with the help of developers, so make sure you involve them
Use this request to retrieve the current balances of the Payment Systems available to your project. API docs for this request are available here.
Get payment systems balances for the project
Authorizations
apikeystringRequired
Query parameters
project_idnumberRequiredExample:
Project ID in the system
1234567Responses
200
OK
application/json
or
400
Error
application/json
401
Unauthorized
application/json
get/Remotes/payment-systems-balances
GET /Remotes/payment-systems-balances?project_id=1 HTTP/1.1
Host: <domain>
apikey: YOUR_API_KEY
Accept: */*
{
"success": true,
"payment_systems_balances": [
{
"name": "bkash_b",
"balance": "10000.000"
}
]
}Last updated