Skip to main content

BalanceResponse

client_idinteger

Account ID you obtained from PagaSul when integrating

Example: 123
balance object[]

Balance per currency

  • Array [
  • currencystring

    Code of the currency in the ISO-4217 alpha-3 format

    Example: BRL
    amountnumber

    Balance amount in major currency units

    Example: 1234.56
  • ]
  • result_codestring

    Internal result code of request processing

    Example: OK
    result_messagestring

    Description of the result code

    Example: OK
    BalanceResponse
    {
    "client_id": 123,
    "balance": [
    {
    "currency": "BRL",
    "amount": 1234.56
    }
    ],
    "result_code": "OK",
    "result_message": "OK"
    }