module GrooveHQ::Client::Customers

Public Instance Methods

customer(email) click to toggle source
# File lib/groovehq/client/customers.rb, line 10
def customer(email)
  get("/customers/#{email}")
end
customers(options = {}) click to toggle source
# File lib/groovehq/client/customers.rb, line 14
def customers(options = {})
  get("/customers", options)
end
update_customer(email, options) click to toggle source
# File lib/groovehq/client/customers.rb, line 6
def update_customer(email, options)
  put("/customers/#{email}", options)
end