Class: Tripletexer::Endpoints::Customer

Inherits:
AbstractEndpoint show all
Defined in:
lib/tripletexer/endpoints/customer.rb

Defined Under Namespace

Classes: Category

Instance Method Summary collapse

Methods inherited from AbstractEndpoint

#initialize

Constructor Details

This class inherits a constructor from Tripletexer::Endpoints::AbstractEndpoint

Instance Method Details

#categoryObject



26
27
28
# File 'lib/tripletexer/endpoints/customer.rb', line 26

def category
  Tripletexer::Endpoints::Customer::Category.new(api_client)
end

#create(body) ⇒ Object



12
13
14
# File 'lib/tripletexer/endpoints/customer.rb', line 12

def create(body)
  create_entity('/v2/customer', body)
end

#find(id, params = {}) ⇒ Object



17
18
19
# File 'lib/tripletexer/endpoints/customer.rb', line 17

def find(id, params = {})
  find_entity("/v2/customer/#{id}", params)
end

#search(params = {}) ⇒ Object



7
8
9
# File 'lib/tripletexer/endpoints/customer.rb', line 7

def search(params = {})
  find_entities('/v2/customer', params)
end

#update(id, body) ⇒ Object



22
23
24
# File 'lib/tripletexer/endpoints/customer.rb', line 22

def update(id, body)
  update_entity("/v2/customer/#{id}", body)
end