engiven-api
A Ruby wrapper for the Engiven.com API
Learn about the Engiven API at https://apidocs.engiven.com
Installation
Add this line to your application's Gemfile:
gem 'engiven', '~> 0.0.1'
bundle install
Usage
api_key = 'YOUR_API_KEY_HERE'
client = EngivenAPI::Client.new(api_key: api_key)
client.list_customers(params)
client.create_customer(params)
client.find_customer(id)
client.update_customer(id, params)
client.list_funds(params)
client.create_fund(params)
client.find_fund(id)
client.update_fund(id, params)
client.list_gifts(params)
client.create_pledged_gift(params)