Class: Tripletexer::Endpoints::Supplier

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

Instance Method Summary collapse

Methods inherited from AbstractEndpoint

#initialize

Constructor Details

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

Instance Method Details

#create(body) ⇒ Object



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

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

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



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

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

#search(params = {}) ⇒ Object



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

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

#update(id, body) ⇒ Object



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

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