I am trying to get the highrise api working with my project. total noob.
I have an account, have my api key, added to my rails project like so in my controller.
require 'highrise'
Highrise::Base.site = 'http://MYACCOUNT.highrisehq.com'
Highrise::Base.user = 'MYAPI KEY'
@person = Highrise::Person.find(:all)
in my view i can get all of rthe people in my contacts list, but cant figure out how to narrow down that list.
so if @person = Highrise::Person.find(:all) fetchs all of them, what will only fetch, say , your with the name "larry"?
I have tried and just cant wrap my head around this.