Code Monkey home page Code Monkey logo

mollie-api-ruby's Introduction

Mollie

LOOKING FOR VERSION v2.2.X README CLICK HERE

Mollie API client for Ruby

Gem Version

Accepting iDEAL, Bancontact/Mister Cash, SOFORT Banking, Creditcard, SEPA Bank transfer, SEPA Direct debit, Bitcoin, PayPal, KBC/CBC Payment Button, Belfius Direct Net, paysafecard and ING Home’Pay online payments without fixed monthly costs or any punishing registration procedures. Just use the Mollie API to receive payments directly on your website or easily refund transactions to your customers.

Requirements

To use the Mollie API client, the following things are required:

  • Get yourself a free Mollie account. No sign up costs.
  • Create a new Website profile to generate API keys (live and test mode) and setup your webhook.
  • Now you're ready to use the Mollie API client in test mode.
  • In order to accept payments in live mode, payment methods must be activated in your account. Follow a few of steps, and let us handle the rest.

Installation

By far the easiest way to install the Mollie API client is to install it with gem.

# Gemfile
gem 'mollie-api-ruby'

$ gem install mollie-api-ruby

You may also git checkout or download all the files, and include the Mollie API client manually.

How to receive payments

To successfully receive a payment, these steps should be implemented:

  1. Use the Mollie API client to create a payment with the requested amount, description and optionally, a payment method. It is important to specify a unique redirect URL where the customer is supposed to return to after the payment is completed.

  2. Immediately after the payment is completed, our platform will send an asynchronous request to the configured webhook to allow the payment details to be retrieved, so you know when exactly to start processing the customer's order.

  3. The customer returns, and should be satisfied to see that the order was paid and is now being processed.

Getting started

Requiring the Mollie API Client. Not required when used with a Gemfile

require 'mollie-api-ruby'

Create an initializer and add the following line:

Mollie::Client.configure do |config|
  config.api_key = '<your-api-key>'
end

You can also include the API Key in each request you make, for instance if you are using the Connect API

Mollie::Payment.get("pay-id", api_key: '<your-api-key>')

If you need to do multiple calls with the same API Key, use the following helper

Mollie::Client.with_api_key('<your-api-key>') do
  mandates = Mollie::Customer::Mandate.all(customer_id: params[:customer_id])
  if mandates.any?
    payment = Mollie::Payment.create(
      amount:       10.00,
      description:  'My first API payment',
      redirect_url: 'https://webshop.example.org/order/12345/',
      webhook_url:  'https://webshop.example.org/mollie-webhook/'
    )
  end
end

Creating a new payment.

payment = Mollie::Payment.create(
  amount:       10.00,
  description:  'My first API payment',
  redirect_url: 'https://webshop.example.org/order/12345/',
  webhook_url:  'https://webshop.example.org/mollie-webhook/'
)

Retrieving a payment.

payment = Mollie::Payment.get(payment.id)

if payment.paid?
  puts 'Payment received.'
end

Refunding payments

The API also supports refunding payments. Note that there is no confirmation and that all refunds are immediate and definitive. Refunds are only supported for iDEAL, credit card and Bank Transfer payments. Other types of payments cannot be refunded through our API at the moment.

payment = Mollie::Payment.get(payment.id)
refund  = payment.refunds.create

Examples

In order to run the examples first run bundle install

$ cd mollie-api-ruby
$ bundle install
$ cd examples
$ rackup

API documentation

If you wish to learn more about the Ruby API, download the source code and run the Example app as follows:

$ git clone [email protected]:mollie/mollie-api-ruby.git
$ cd mollie-api-ruby
$ bundle
$ cd examples
$ API_KEY=test_xxxxxx rackup

You can then browse the swagger documentation on http://localhost:9292

If you wish to learn more about our API, please visit the Mollie Developer Portal. API Documentation is available in both Dutch and English.

Migration from v2.2.x

The version 2.2.x used a client that contained methods to call API methods on the mollie servers. The responses were converted in to Mollie objects and attributes could be retrieved. Version 3.1.x uses a more Resource oriented approach that fits better with the Active Record principle. Instead of calling the methods on the client, you now use the Resource class or instance to call the API methods.

You can now require the mollie client by using the gem name. If you are using bundler and Rails you don't even need to require it anymore

# require 'mollie/api/client'
require 'mollie-api-ruby'

Instead of creating a client with an API key, the client is now stored as a threadsafe singleton object. Configuration can now be simplified by adding a global configure block in a Rails initializer or a Rack loader file.

# mollie = Mollie::API::Client.new('test_dHar4XY7LxsDOtmnkVtjNVWXLSlXsM')
 
# config/initializers/mollie.rb or in your app.rb 
Mollie::Client.configure do |config|
  config.api_key = 'test_dHar4XY7LxsDOtmnkVtjNVWXLSlXsM'
end

# You may also pass a specific API key in the params for each request.
payment = Mollie::Payment.get(api_key: 'test_dHar4XY7LxsDOtmnkVtjNVWXLSlXsM')

# Or in a Rails around filter
around_action :set_mollie_key

def set_mollie_key
  Mollie::Client.with_api_key('test_dHar4XY7LxsDOtmnkVtjNVWXLSlXsM') do
    yield
  end
end
 

Change the client calls to Resource calls

# mollie = Mollie::API::Client.new('test_dHar4XY7LxsDOtmnkVtjNVWXLSlXsM')
# payment = mollie.payments.create(
#  amount:       10.00,
#  description:  'My first API payment',
#  redirect_url: 'https://webshop.example.org/order/12345/',
#  webhook_url:  'https://webshop.example.org/mollie-webhook/'
#)
 
payment = Mollie::Payment.create(
  amount:       10.00,
  description:  'My first API payment',
  redirect_url: 'https://webshop.example.org/order/12345/',
  webhook_url:  'https://webshop.example.org/mollie-webhook/'
) 

The resources created are similar to the old resources but have an extra option to retrieve nested resources

# payment = mollie.payments.get(payment.id)
# refund  = mollie.payments_refunds.with(payment).create
payment = Mollie::Payment.get("id")
refund = payment.refunds.create 

License

BSD (Berkeley Software Distribution) License. Copyright (c) 2014-2018, Mollie B.V.

Support

Contact: www.mollie.com[email protected] — +31 20-612 88 55

mollie-api-ruby's People

Contributors

adriaanmol avatar benoist avatar brambokdam avatar bramjetten avatar dandandan avatar faapz avatar gregbeech avatar justincase avatar lewis-fidlers avatar lvgunst avatar martyphee avatar mvdpanne avatar paetor avatar redmar avatar ricardodevries avatar rickwong avatar robin-mollie avatar rogierslag avatar rogiervandenberg avatar simply-phi avatar smitsel avatar tails avatar thijs-riezebeek avatar vernondegoede avatar xxswingxx avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.