For the complete documentation index, see llms.txt. This page is also available as Markdown.

🧮Getting payment system balances

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 system balances

get

Get payment systems balances for the project

Authorizations
apikeystringRequired
Query parameters
project_idnumberRequired

Project ID in the system

Example: 1234567
Responses
200

OK

application/json
or
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