Caution : Still under developpement and subject to changes
Ruby API client to query LemonWay web merchant and blank label APIs
Documentation at http://rubydoc.info/github/Paymium/lemon_way
Add this line to your application's Gemfile:
gem 'lemon_way'
And then execute:
$ bundle
Or install it yourself as:
$ gem install lemon_way
LemonWay::Client::WhiteLabel.init base_uri: "https://ws.lemonway.fr/mb/test/dev/directkit/service.asmx",
wl_login: "test",
wl_pass: "test",
wl_PDV: "test",
language: "fr",
version: "1.0",
channel: "W",
wallet_ip: "1.1.1.1"
register_wallet_params = { wallet: "123456789",
client_mail: "test@test.com",
client_title: "M",
client_first_name: "Martin",
client_last_name: "Dupont"
}
LemonWay::Client::WhiteLabel.register_wallet register_wallet_params
See this page for details.
- Complete the doc
- Test with VCR
- Build WebMerchant client
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request