Module: Intercom::ApiOperations::Find

Instance Method Summary collapse

Instance Method Details

#find(params) ⇒ Object

Raises:



8
9
10
11
12
13
14
15
16
17
18
19
20
# File 'lib/intercom/api_operations/find.rb', line 8

def find(params)
  raise BadRequestError, "#{self}#find takes a hash as its parameter but you supplied #{params.inspect}" unless params.is_a? Hash

  if params[:id]
    id = params.delete(:id)
    response = @client.get("/#{collection_name}/#{id}", params)
  else
    response = @client.get("/#{collection_name}", params)
  end
  raise Intercom::HttpError, 'Http Error - No response entity returned' unless response

  from_api(response)
end