Skip to content

JanDeDobbeleer/mollie-api-python

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

55 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Mollie

Mollie API client for Python

Accepting iDEAL, Bancontact/Mister Cash, SOFORT Banking, Creditcard, SEPA Bank transfer, SEPA Direct debit, Bitcoin, PayPal, Belfius Direct Net and paysafecard 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.

PyPI version

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 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 steps, and let us handle the rest.
  • Mollie API client for Python has a dependency on Requests.

Installation

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

$ pip install mollie-api-python

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.

import Mollie

Initializing the Mollie API client, and setting your API key.

mollie = Mollie.API.Client()
mollie.setApiKey('test_dHar4XY7LxsDOtmnkVtjNVWXLSlXsM')

Creating a new payment.

payment = mollie.payments.create({
    'amount':      10.00,
    'description': 'My first API payment',
    'redirectUrl': 'https://webshop.example.org/order/12345/',
    'webhookUrl':  'https://webshop.example.org/mollie-webhook/'
})

Retrieving a payment.

payment = mollie.payments.get(payment['id'])

if payment.isPaid():
    print 'Payment received.'

Fully integrated iDEAL payments

If you want to fully integrate iDEAL payments in your web site, some additional steps are required. First, you need to retrieve the list of issuers (banks) that support iDEAL and have your customer pick the issuer he/she wants to use for the payment.

Retrieve the list of issuers:

issuers = mollie.issuers.all()

issuers will be a list of Mollie.API.Object.Issuer objects. Use the attribute id of this object in the API call, and the attribute name for displaying the issuer to your customer. For a more in-depth example, see Example 4.

Create a payment with the selected issuer:

payment = mollie.payments.create({
    'amount':      10.00,
    'description': 'My first API payment',
    'redirectUrl': 'https://webshop.example.org/order/12345/',
    'webhookUrl':  'https://webshop.example.org/mollie-webhook/',
    'method':      Mollie.API.Object.Method.IDEAL,
    'issuer':      selected_issuer_id,  # e.g. 'ideal_INGBNL2A'
})

The paymentUrl attribute of the payment object will point directly to the online banking environment of the selected issuer.

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.payments.get(payment['id'])
refund = mollie.payments.refund(payment)

Examples

To run the examples you need to install Flask. Simply run:

$ cd mollie-api-python
$ pip install Flask 
$ pip install requests 
$ python examples/app.py

License

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

Support

Contact: www.mollie.cominfo@mollie.com — +31 20-612 88 55

About

Mollie API client for Python

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 99.8%
  • Shell 0.2%