Ruby Client of Firekassa API
Install the gem and add to the application's Gemfile by executing:
$ bundle add firekassa
If bundler is not being used to manage dependencies, install the gem by executing:
$ gem install firekassa
When you get your Site approved you can use it's secret key for making API requests.
require 'firekassa'
Firekassa.configure do |config|
config.base_url = "<BASE API URL>" # "https://admin.vanilapay.com"
config.api_token = "<YOUR SITE SECRET KEY>"
end
Now you can make API calls
Firekassa::Balance.new.get # => { "balance": "2000.0" }
Firekassa::Account.new.list # => items: [ ... ]
See more info in tests
Firekassa::Balance.new.show(account_id) # => { account_data... }
See more info in tests
Firekassa::Transaction.new.list # => {items:[ trxs...] }
See more info in tests
deposit_data = {
order_id: "123", # payment ID from your system
amount: "5000.0",
# callbacks
notification_url: "http://some.url/callback",
success_url: "http://some.url/callback",
fail_url: "http://some.url/callback",
}
result = Firekassa::Deposit.new.create_card(deposit_data)
# it responds card credentials for making payment
See more info in tests
# for card
withdraw_data = {
order_id: "123123", # payment ID from your system
account: "4242424242424242",
site_account: 'sber',
amount: "100.00",
# callbacks
notification_url: "http://some.url/callback",
}
Firekassa::Withdraw.new.create_card(withdraw_data) # => { trx data... }
See more info in tests
Firekassa::Transaction.new.show(deposit_id) # => { trx data... }
See more info in tests
Firekassa::Transaction.new.cancel(id) # => { trx data... }
See more info in tests
Firekassa::Transaction.new.download_receipt(id)
See more info in tests
To send transaction receipt to email:
Firekassa::Transaction.new.send_to_email(id)
See more info in tests
After checking out the repo, run bin/setup
to install dependencies. Then, run rake spec
to run the tests. You can also run bin/console
for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run bundle exec rake install
. To release a new version, update the version number in version.rb
, and then run bundle exec rake release
, which will create a git tag for the version, push git commits and the created tag, and push the .gem
file to rubygems.org.
Bug reports and pull requests are welcome on GitHub at https://github.com/lxkuz/firekassa-ruby-client. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.
The gem is available as open source under the terms of the MIT License.
Everyone interacting in the Firekassa project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.