API for Balances

The API for Balances allows merchants to check their account balances for payouts without using Bamboo’s merchant console.

This endpoint allows you to retrieve the current available balance for processing payouts. It provides detailed information about your account’s financial status, including the available balance, accounting balance, and any pending fees or processing amounts.

Request URL

You must invoke a GET request to the following URLs according to your needs.

  • Production: https://api.bamboopayment.com/v1/api/merchant/account/balance
  • Stage: https://api.stage.bamboopayment.com/v1/api/merchant/account/balance

Authorization

In the header, the Authorization parameter must be configured by concatenating the word Basic, a space and the Private Key of the merchant.

Response example

{
  "Response": {
      "Date": "2023-06-02T20:59:59-03:00",
      "CurrencyCode": "USD",
      "FinalAccountingBalance": 13670.0000,
      "FinalAvailableBalance": 13170.0000,
      "FinalFeeBalance": 0.0,
      "FinalProcessingBalance": 500.0
  },
  "Errors": null
}

Where:
ParameterTypeDescription
ResponseobjectContains the balance information.
ResponseDatestringThe timestamp of when the balance information was retrieved.
ResponseCurrencyCodestringThe currency code of the balance amounts.
ResponseFinalAccountingBalancenumberThe total balance of the account.
ResponseFinalAvailableBalancenumberThe final available balance for processing payouts.
ResponseFinalFeeBalancenumberThe final balance for fees (in cases where the merchant assumes them independently of the account’s total balance). If fees are automatically deducted from the main balance, this value is typically zero.
ResponseFinalProcessingBalancenumberThe final balance of any amounts in processing.
ErrorsobjectContains any error information. Will be null if the request was successful.
footer
Last modified September 19, 2024

© Bamboo | All rights reserved 2024