Can be done by adding the bellow method to Persons.php ``` public function getByEmail($email) { return $this->curl->get('persons/find',array('term'=>$email, 'search_by_email'=>true)); } ```