Author: mshafrir@gmail.com
Nutshell Crm is a Ruby wrapper for the Nutshell Crm API.
- {NutshellCrm::Client}
require "nutshell-crm"
# Instantiate the Nutshell client.
nutshell = NutshellCrm::Client.new "user@example.com", "MY_API_KEY"
# Get the first open lead with stub data (default).
nutshell.find_leads({status: 0}).first
#=> {"stub"=>true, "id"=>1001, "entityType"=>"Leads", "name"=>"Lead\u20131001", "status"=>0, "primaryAccountName"=>nil}
# Enable non-stub responses.
nutshell.stub_responses = false
# Get the first open lead with full data.
nutshell.find_leads({status: 0}).first
#=> {"id"=>1001, "entityType"=>"Leads", "name"=>"Lead\u20131001", "status"=>0, "primaryAccountName"=>nil, "creator"=>{}}
gem install nutshell-crm