This is a ruby wrapper for the Clover API - US.
Add this line to your application's Gemfile:
gem 'cloverrb'
And then execute:
$ bundle
Or install it yourself as:
$ gem install cloverrb
- Token (Generated via OAuth)
- Merchant Code
Get all merchant details
merchant_client = Cloverrb::Merchant(token)
merchant_client.find(merchant_id)
Get a list of employees of a specific merchant
employees_client = Cloverrb::Employee(token)
employees_client.all(merchant_id)
Get a single employee
employees_client = Cloverrb::Employee(token, merchant_id)
employees_client.find(employee_id)
Get a list of orders of a specific merchant
order_client = Cloverrb::Order(token)
orders = order_client.all(merchant_id
Get the total order amount for a line items
line_items_client = Cloverrb::LineItem.new(token, order_id, merchant_id)
line_items = line_items_client.all
total = described_class.total(line_items)
Get a list of orders from a specific timeframe
order_client = Cloverrb::Order(token)
options = {
"start_date": start_date,
"end_date": end_date
}
orders = order_client.all(merchant_id, options)
Note: start_date
and end_date
must be in milliseconds.
Example:
"June 15, 2017 8:00am".to_time.to_i * 1000
Get a list of orders and filter by state
order_client = Cloverrb::Order(token)
options = {
"state": "paid"
}
orders = order_client.all(merchant_id, options)
Get a list of line items for a specific order
line_item_client = Cloverrb::LineItem(token, order_id, merchant_id)
line_items = line_item_client.all
Fetch the address details of a merchant
address_client = Cloverrb::Address(token, merchant_id)
address = address_client.fetch
Fetch the property details of a merchant
properties_client = Cloverrb::Properties(token, merchant_id)
properties = properties_client.fetch
Bug reports and pull requests are welcome on GitHub at https://github.com/iamarmanjon/cloverrb.