Bookafy
This is a gem that enables you to get customer and appointment data from Bookafy.
Bookafy is an automated scheduling for service appointments, calls, meetings, and much more.
Installation
Add this line to your application's Gemfile:
gem 'bookafy'
And then execute:
$ bundle
Or install it yourself as:
$ gem install bookafy
Usage
Once you obtain OAuth access token, you should set it up
Bookafy.access_token = '6911d4a6b217bd637db0c81741482cdb497738cd52c1b3996528094c1e47c345'
Bookafy.client_token = '756d6e029d10c5ac68e5d4cd4b8e3468e80ffed7d27a772d22430f75a5f08236'
Access token is a oauth access token. Client token is a yours application code that you received after authorization.
Customers
To fetch all customers you can use:
customer_service = Bookafy::Customer.new
customers = customer_service.all # an array of Customer models
# or if you want to get only customers that have been updated since some time
customers = customer_service.all(updated: 7.days.ago.to_i)
Appointments
To fetch all appointments you can use:
appointments_service = Bookafy::Appointment.new
appointments = appointments_service.all # an array of Appointment models
# or if you want to get only customers that have been updated since some time
appointments = appointments_service.all(updated: 7.days.ago.to_i)
Company Info
To fetch company info that you are currently connected to:
company_service = Bookafy::Company.new
company = company_service.info
puts company.name # prints company name
Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/bookafy-rails. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
License
The gem is available as open source under the terms of the MIT License.