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

Retrieve Balance

Get the latest available balance amounts for your account, allowing you to monitor funds in real-time

Method and URL

GET [BASE_URL]/v1/balances

Request Params

Key
Value

usecase

Balance types are:

  • DISBURSEMENT (default)

  • PAYMENT

  • WALLET

Response

Response Body

{
    "code": "00",
    "message": "Success",
    "data": {
        "availableBalance": {
            "currency": "IDR",
            "value": "135775256.00"
        }
    }
}

Detail Parameter Response

Parameter
Data Type
Requirement
Description

availableBalance

Object

M

Available balance for the merchant

  • currency

String

M

Balance currency

  • value

String

M

Available Balance. Your available funds which is ready to be used

Last updated