class Nimbu::Endpoints::Customers

Public Instance Methods

all(*args)
Alias for: list
count(*args) click to toggle source
# File lib/nimbu-api/endpoints/customers.rb, line 25
def count(*args)
  arguments(args)

  get_request("/customers/count", arguments.params)
end
create(*args) click to toggle source
# File lib/nimbu-api/endpoints/customers.rb, line 38
def create(*args)
  arguments(args)

  post_request("/customers", arguments.params)
end
custom_fields(*args)
Alias for: customizations
customizations(*args) { |el| ... } click to toggle source
# File lib/nimbu-api/endpoints/customers.rb, line 15
def customizations(*args)
  arguments(args)

  response = get_request("/products/customizations", arguments.params)
  return response unless block_given?
  response.each { |el| yield el }
end
Also aliased as: fields, custom_fields
delete(*args) click to toggle source
# File lib/nimbu-api/endpoints/customers.rb, line 51
def delete(*args)
  arguments(args, :required => [:customer_id])

  delete_request("/customers/#{customer_id}", arguments.params)
end
Also aliased as: remove
edit(*args)
Alias for: update
fields(*args)
Alias for: customizations
find(*args)
Alias for: get
get(*args) click to toggle source
# File lib/nimbu-api/endpoints/customers.rb, line 31
def get(*args)
  arguments(args, :required => [:customer_id])

  get_request("/customers/#{customer_id}", arguments.params)
end
Also aliased as: find
list(*args) { |el| ... } click to toggle source
# File lib/nimbu-api/endpoints/customers.rb, line 6
def list(*args)
  arguments(args)

  response = get_request("/customers", arguments.params)
  return response unless block_given?
  response.each { |el| yield el }
end
Also aliased as: all
remove(*args)
Alias for: delete
update(*args) click to toggle source
# File lib/nimbu-api/endpoints/customers.rb, line 44
def update(*args)
  arguments(args, :required => [:customer_id])

  patch_request("/customers/#{customer_id}", arguments.params)
end
Also aliased as: edit