clever_reach
Ruby bindings for CleverReach's API
Installation
In your Gemfile:
gem 'clever_reach'
Introduction
require 'clever_reach'
CleverReach.configure do |config|
config.api_key = "12345" # Replace with your API key
end
api = CleverReach::Base.new
resp = api.client_get_details
resp.to_hash # => { :id => '12345', :first_name => 'Stephan', ... }