module Paybase::Client::Accounts

Public Instance Methods

account(id) click to toggle source
# File lib/paybase/client/accounts.rb, line 9
def account(id)
  get("/account/#{id}")
end
create_account(options) click to toggle source
# File lib/paybase/client/accounts.rb, line 5
def create_account(options)
  post("/accounts", options)
end