class Pin::Balance

This class models Pin's Balance API

Public Class Methods

get() click to toggle source

Returns the current balance of your Pin Payments account. Transfers can only be made using the funds in the available balance. The pending amount will become available after the 7 day settlement schedule on your charges.

pinpayments.com/docs/api/balance

# File lib/pin_up/balance.rb, line 11
def self.get
  build_response(make_request(:get, { url: 'balance' }))
end