module Paybase::Client::Banks

Public Instance Methods

bank(id) click to toggle source
# File lib/paybase/client/banks.rb, line 13
def bank(id)
  get("/bank-account/#{id}")
end
banks(options = {}) click to toggle source
# File lib/paybase/client/banks.rb, line 5
def banks(options = {})
  get("/bank-accounts", options)
end
create_bank(options) click to toggle source
# File lib/paybase/client/banks.rb, line 9
def create_bank(options)
  post("/bank-accounts", options)
end
update_bank(id, options) click to toggle source
# File lib/paybase/client/banks.rb, line 17
def update_bank(id, options)
  patch("/bank-account/#{id}", options)
end