module Paybase::Client::Customers

Public Instance Methods

create_individual(options) click to toggle source
# File lib/paybase/client/customers.rb, line 9
def create_individual(options)
  post("/customers/individual", options)
end
customer(id) click to toggle source
# File lib/paybase/client/customers.rb, line 13
def customer(id)
  get("/customers/#{id}")
end
customers(options = {}) click to toggle source
# File lib/paybase/client/customers.rb, line 5
def customers(options = {})
  get("/customers", options)
end
update_customer(id, options) click to toggle source
# File lib/paybase/client/customers.rb, line 17
def update_customer(id, options)
  patch("/customers/#{id}", options)
end