class PipeRocket::PersonService
Constants
- HOST
Public Instance Methods
find_by_email(email)
click to toggle source
Find person by email
# File lib/pipe_rocket/person_service.rb, line 6 def find_by_email(email) uri = build_uri({term: email, search_by_email: true }, 'find') response = HTTP.get(uri) case response.code when 200 json_array = ::JSON.parse(response)['data'] return [] unless json_array json_array.map{|raw|build_entity(raw)} else raise PipeRocket::Error.new(response.code) end rescue HTTP::ConnectionError raise PipeRocket::Error.new(408) end