mollie-api-python


Namemollie-api-python JSON
Version 3.6.0 PyPI version JSON
download
home_pagehttps://github.com/mollie/mollie-api-python
SummaryMollie API client for Python
upload_time2023-10-13 12:11:50
maintainerFour Digits B.V.
docs_urlNone
authorMollie B.V.
requires_python
licenseBSD
keywords mollie payment service ideal creditcard mistercash bancontact sofort sofortbanking sepa paypal paysafecard podiumcadeaukaart banktransfer direct debit belfius belfius direct net kbc cbc refunds payments gateway gift cards intersolve fashioncheque podium cadeaukaart yourgift vvv giftcard webshop giftcard nationale entertainment card klarna pay later klarna pay now klarna slice it przelewy24
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <p align="center">
  <img src="https://info.mollie.com/hubfs/github/python/logo.png" width="128" height="128"/>
</p>
<h1 align="center">Mollie API client for Python</h1>

<img src="https://info.mollie.com/hubfs/github/python/editor-1.png" />

Accepting [iDEAL](https://www.mollie.com/en/payments/ideal/), [Bancontact/Mister Cash](https://www.mollie.com/en/payments/bancontact/), [SOFORT Banking](https://www.mollie.com/en/payments/sofort/), [Creditcard](https://www.mollie.com/en/payments/credit-card/), [SEPA Bank transfer](https://www.mollie.com/en/payments/bank-transfer/), [SEPA Direct debit](https://www.mollie.com/en/payments/direct-debit/), [PayPal](https://www.mollie.com/en/payments/paypal/), [Belfius Direct Net](https://www.mollie.com/en/payments/belfius/), [KBC/CBC](https://www.mollie.com/en/payments/kbc-cbc/), Klarna [Pay later](https://www.mollie.com/en/payments/klarna-pay-later/)/[Pay now](https://www.mollie.com/en/payments/klarna-pay-now/)/[Slice it](https://www.mollie.com/en/payments/klarna-slice-it/), [paysafecard](https://www.mollie.com/en/payments/paysafecard/), [Giftcards](https://www.mollie.com/en/payments/gift-cards/), [Giropay](https://www.mollie.com/en/payments/giropay/), [EPS](https://www.mollie.com/en/payments/eps/), [Przelewy24](https://www.mollie.com/en/payments/przelewy24) and [Billie](https://www.mollie.com/en/payments/billie) 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](https://badge.fury.io/py/mollie-api-python.svg)](http://badge.fury.io/py/mollie-api-python)
![Tests](https://github.com/mollie/mollie-api-python/actions/workflows/tests.yaml/badge.svg)

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

+ Get yourself a free [Mollie account](https://www.mollie.com/signup). No sign up costs.
+ Create a new [Website profile](https://www.mollie.com/dashboard/settings/profiles) to generate API keys and setup your webhook.
+ Now you're ready to use the Mollie API client in test mode.
+ Follow [a few steps](https://www.mollie.com/dashboard/?modal=onboarding) to enable payment methods in live mode, and let us handle the rest.
+ Python >= 3.8
+ Up-to-date OpenSSL (or other SSL/TLS toolkit)
+ Mollie API client for Python has a dependency on [Requests](http://docs.python-requests.org/en/master/) and [Requests-OAuthlib](https://requests-oauthlib.readthedocs.io/en/latest/)

## Migration to v3 ##
If your application uses a recent v2 version of the Mollie API client and you're ready to migrate to v3, [read all about the API changes](https://github.com/mollie/mollie-api-python/blob/master/v3-api-changes.md) that we made. Use the docs to quickly find how to update your integration code and use the v3 client correctly.

## Installation ##
**Please note:** If you want to install an older version of the Mollie API client (current major version is `v3`), then please refer to their respective github branches for installation instructions:
- version 2.x.x is available from the [v2-develop branch](https://github.com/mollie/mollie-api-python/tree/v2-develop).
- version 1.x.x is available from the [v1-develop branch](https://github.com/mollie/mollie-api-python/tree/v1-develop).

By far the easiest way to install the Mollie API client is to install it with [pip](https://pip.pypa.io). The command below will install the latest released version of the client.
```shell
$ pip install mollie-api-python
```
You may also git checkout or [download all the files](https://github.com/mollie/mollie-api-python/archive/master.zip), and include the Mollie API client manually.

Create and activate a Python >= 3.8 virtual environment (inside a git checkout or downloaded archive).

```shell
$ cd mollie-api-python
$ python -m venv .venv
$ source .venv/bin/activate
```

Install the additional requirements for the examples, then install the Mollie API client itself.
```shell
$ pip install flask
$ pip install -e .
```

Run the examples.
```shell
export MOLLIE_API_KEY=test_YourApiKey
$ python examples/app.py
```

If you are working from a development machine, you should use a tool like [ngrok.com](https://ngrok.com/) to get a publicly available URL that can be used in callback and redirect URLs. Start the service and expose the forwarding URL (https) to the mollie example code:

```shell
export MOLLIE_API_KEY=test_YourApiKey
export MOLLIE_PUBLIC_URL=https://some.ngrok.url.io
$ python examples/app.py
```

## 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, currency, 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.

Find our full documentation online on [docs.mollie.com](https://docs.mollie.com).

## Getting started ##

Importing the Mollie API Client
```python
from mollie.api.client import Client
``` 
Initializing the Mollie API client, and setting your API key

```python
mollie_client = Client()
mollie_client.set_api_key('test_dHar4XY7LxsDOtmnkVtjNVWXLSlXsM')
``` 

Creating a new payment.

```python
payment = mollie_client.payments.create({
    'amount': {
        'currency': 'EUR',
        'value': '10.00' 
    },
    'description': 'My first API payment',
    'redirectUrl': 'https://webshop.example.org/order/12345/',
    'webhookUrl': 'https://webshop.example.org/mollie-webhook/',
})
```
_After creation, the payment id is available in the `payment.id` property. You should store this id with your order._

After storing the payment id you can send the customer to the checkout using the `payment.checkout_url`.  

For a payment create example, see [Example 1 - New Payment](https://github.com/mollie/mollie-api-python/blob/master/examples/01-new-payment.py).

In general, request body parameters for an API endpoint should be added to a dictionary and provided as the first argument (or `data` keyword argument). Query string parameters can be provided as keyword arguments.

## Retrieving payments ##
We can use the `payment.id` to retrieve a payment and check if the payment `isPaid`.

```python
payment = mollie_client.payments.get(payment.id)

if payment.is_paid():
    print('Payment received.')
```

Or retrieve a collection of payments.

```python
payments = mollie_client.payments.list()
```

For an extensive example of listing payments with the details and status, see [Example 5 - Payments History](https://github.com/mollie/mollie-api-python/blob/master/examples/05-payments-history.py).

## Payment webhook ##

When the status of a payment changes the `webhookUrl` we specified in the creation of the payment will be called.  
There we can use the `id` from our POST parameters to check te status and act upon that, see [Example 2 - Webhook verification](https://github.com/mollie/mollie-api-python/blob/master/examples/02-webhook-verification.py).


## Multicurrency ##
Since the 2.0 version of the API (supported by version 2.0.0 of the client) non-EUR payments for your customers is now supported.
A full list of available currencies can be found [in our documentation](https://docs.mollie.com/guides/multicurrency).

```python
payment = mollie_client.payments.create({
    'amount': {
        'currency': 'USD', 
        'value': '10.00'
    },
    'description': 'Order #12345',
    'redirectUrl': 'https://webshop.example.org/order/12345/',
    'webhookUrl': 'https://webshop.example.org/mollie-webhook/',
})
```
_After the customer completes the payment, the `payment.settlement_amount` will contain the amount + currency that will be settled on your account._

### 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 iDEAL method and include the issuers

```python
method = mollie_client.methods.get(mollie.api.objects.Method.IDEAL, include='issuers')
```

_`method.issuers` will be a list of Issuer objects. Use the property `id` of this object in the
 API call, and the property `name` for displaying the issuer to your customer. For a more in-depth example, see [Example 4 - iDEAL payment](https://github.com/mollie/mollie-api-python/blob/master/examples/04-ideal-payment.py)._

```python
payment = mollie_client.payments.create({
    'amount': {
        'currency': 'EUR', 
        'value': '10.00'
    },
    'description': 'My first API payment',
    'redirectUrl': 'https://webshop.example.org/order/12345/',
    'webhookUrl': 'https://webshop.example.org/mollie-webhook/',
    'method': mollie.api.objects.Method.IDEAL,
    'issuer': selectedIssuerId,  # e.g. "ideal_INGBNL2A"
})
```
The `payment.checkout_url` is a URL that points 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, Bancontact, SOFORT Banking, PayPal, Belfius Direct Net, KBC/CBC, 
ING Home'Pay and bank transfer payments. Other types of payments cannot be refunded through our API at the moment.

```python
payment = mollie_client.payments.get(payment.id)

# Refund € 2 of this payment
refund = payment.refunds.create({
    'amount': {
        'currency': 'EUR',
        'value': '2.00'
    }
})
```

For a working example, see [Example 11 - Refund payment](https://github.com/mollie/mollie-api-python/blob/master/examples/11-refund-payment.py).

## OAuth2 ##

At https://docs.mollie.com/oauth/getting-started the OAuth process is explained. Please read this first.

OAuth authentication process redirects back to your application. Therefore you should expose your local web server (the examples) as public urls. A webservice like [ngrok.com](https://ngrok.com/) can help you with that. To run the examples, take the following steps:

1. Install the `ngrok` client (or a similar service), and make sure it works:
    - Start the Mollie oauth examples app without configuration: `python examples/oauth/oauth_app.py`
    - run `ngrok http 5000`, and visit the public URL from the ngrok client.
    - You should see a barebones webapp saying `Mollie OAuth examples: You need to setup OAuth first`.
    - Abort the examples app for now, but leave the ngrok client running. If you restart the ngrok client, you'll receive a new URL, and you will need to update the Mollie Redirect URI (from the next step) again.

2. Login to your Mollie account, and visit Developers -> Your Apps. Create a new application. In the `Redirect URL` field, you enter the ngrok public URL you just visited, and append `/callback` to the end of the URL. After saving the new application, you'll receive a `Client ID` and a `Client Secret`.

3. Go back to the examples app. Now that all other stuff is setup, we can run the examples with all required configuration:

```shell
export MOLLIE_CLIENT_ID=your_client_id
export MOLLIE_CLIENT_SECRET=your_client_secret
export MOLLIE_PUBLIC_URL=https://some.ngrok.url.io
python examples/oauth/oauth_app.py
```

After starting the application, visit the URL on the page to start the OAuth flow with Mollie.

The Authorize endpoint (where the URL takes you to) is the place on the Mollie website where the merchant logs in, and grants authorization to your client application. E.g. when the merchant clicks on the Connect with Mollie button, you should redirect the merchant to the Authorize endpoint.

The merchant can then grant the authorization to your client application for the scopes you have requested. This means that your application can access the merchants' data.

Mollie will then redirect the merchant back to the Redirect URI you have specified. The URI will contain some query parameters, which contains the auth token. At the page listening at the Redirect URI, you should extract that token, and use it to request a regular OAuth token.


### Initializing via OAuth2 ###

You should implement the `get_token` and `set_token` methods yourself. They should retrieve and store the OAuth token that is sent from Mollie somewhere in your application (f.i. in the database).

The token data is JSON, which is handled as a dict.

These are example methods, you should use a storage method that fits your application.

```python
def get_token():
    """
    :return: token (dict) or None
    """
    if os.path.exists('token.json'):
        with open('token.json', 'r') as file:
            return json.loads(file.read())


def set_token(token):
    """
    :param token: token (dict)
    :return: None
    """
    with open('token.json', 'w') as file:
        file.write(json.dumps(token))


mollie_client = Client()
is_authorized, authorization_url = mollie_client.setup_oauth(
    client_id,
    client_secret,
    redirect_uri,
    scope,
    get_token(),
    set_token,
)
# When "is_authorized" is False, you need to redirect the user to the authorization_url.

# After the user confirms the authorization ate the Mollie Authorize page, she is redirected back to your redirect_uri.
# The view on this uri should call setup_oauth_authorization_response(), with authorization_response as parameter.
# This is the full callback URL (string) from the request that the user made when returning from the Mollie website.

mollie_client.setup_oauth_authorization_response(authorization_response)

# The token will be stored via your `set_token` method for future use. Expired tokens will be refreshed by the client automatically.

# Now You can query the API:

mollie_client.organizations.get('me')
```

## API documentation ##
If you wish to learn more about our API, please visit the [Mollie Developer Portal](https://www.mollie.com/en/developers). API Documentation is available in English.

## Want to help us make our API client even better? ##

Want to help us make our API client even better? We take [pull requests](https://github.com/mollie/mollie-api-python/pulls?utf8=%E2%9C%93&q=is%3Apr), sure. But how would you like to contribute to a technology oriented organization? Mollie is hiring developers and system engineers. [Check out our vacancies](https://jobs.mollie.com/) or [get in touch](mailto:personeel@mollie.com).

## License ##
[BSD (Berkeley Software Distribution) License](https://opensource.org/licenses/bsd-license.php).
Copyright (c) 2014-2022, Mollie B.V.

## Support ##
Contact: [www.mollie.com](https://www.mollie.com) — info@mollie.com — +31 20 820 20 70

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/mollie/mollie-api-python",
    "name": "mollie-api-python",
    "maintainer": "Four Digits B.V.",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "info@fourdigits.nl",
    "keywords": "mollie,payment,service,ideal,creditcard,mistercash,bancontact,sofort,sofortbanking,sepa,paypal,paysafecard,podiumcadeaukaart,banktransfer,direct debit,belfius,belfius direct net,kbc,cbc,refunds,payments,gateway,gift cards,intersolve,fashioncheque,podium cadeaukaart,yourgift,vvv giftcard,webshop giftcard,nationale entertainment card,klarna pay later,klarna pay now,klarna slice it,przelewy24",
    "author": "Mollie B.V.",
    "author_email": "info@mollie.com",
    "download_url": "https://files.pythonhosted.org/packages/e9/09/847a6549df9957cc1ce3ff305e9abfc231d61dc93c97241806773cd3fc8d/mollie-api-python-3.6.0.tar.gz",
    "platform": null,
    "description": "<p align=\"center\">\n  <img src=\"https://info.mollie.com/hubfs/github/python/logo.png\" width=\"128\" height=\"128\"/>\n</p>\n<h1 align=\"center\">Mollie API client for Python</h1>\n\n<img src=\"https://info.mollie.com/hubfs/github/python/editor-1.png\" />\n\nAccepting [iDEAL](https://www.mollie.com/en/payments/ideal/), [Bancontact/Mister Cash](https://www.mollie.com/en/payments/bancontact/), [SOFORT Banking](https://www.mollie.com/en/payments/sofort/), [Creditcard](https://www.mollie.com/en/payments/credit-card/), [SEPA Bank transfer](https://www.mollie.com/en/payments/bank-transfer/), [SEPA Direct debit](https://www.mollie.com/en/payments/direct-debit/), [PayPal](https://www.mollie.com/en/payments/paypal/), [Belfius Direct Net](https://www.mollie.com/en/payments/belfius/), [KBC/CBC](https://www.mollie.com/en/payments/kbc-cbc/), Klarna [Pay later](https://www.mollie.com/en/payments/klarna-pay-later/)/[Pay now](https://www.mollie.com/en/payments/klarna-pay-now/)/[Slice it](https://www.mollie.com/en/payments/klarna-slice-it/), [paysafecard](https://www.mollie.com/en/payments/paysafecard/), [Giftcards](https://www.mollie.com/en/payments/gift-cards/), [Giropay](https://www.mollie.com/en/payments/giropay/), [EPS](https://www.mollie.com/en/payments/eps/), [Przelewy24](https://www.mollie.com/en/payments/przelewy24) and [Billie](https://www.mollie.com/en/payments/billie) 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.\n\n[![PyPI version](https://badge.fury.io/py/mollie-api-python.svg)](http://badge.fury.io/py/mollie-api-python)\n![Tests](https://github.com/mollie/mollie-api-python/actions/workflows/tests.yaml/badge.svg)\n\n## Requirements ##\nTo use the Mollie API client, the following things are required:\n\n+ Get yourself a free [Mollie account](https://www.mollie.com/signup). No sign up costs.\n+ Create a new [Website profile](https://www.mollie.com/dashboard/settings/profiles) to generate API keys and setup your webhook.\n+ Now you're ready to use the Mollie API client in test mode.\n+ Follow [a few steps](https://www.mollie.com/dashboard/?modal=onboarding) to enable payment methods in live mode, and let us handle the rest.\n+ Python >= 3.8\n+ Up-to-date OpenSSL (or other SSL/TLS toolkit)\n+ Mollie API client for Python has a dependency on [Requests](http://docs.python-requests.org/en/master/) and [Requests-OAuthlib](https://requests-oauthlib.readthedocs.io/en/latest/)\n\n## Migration to v3 ##\nIf your application uses a recent v2 version of the Mollie API client and you're ready to migrate to v3, [read all about the API changes](https://github.com/mollie/mollie-api-python/blob/master/v3-api-changes.md) that we made. Use the docs to quickly find how to update your integration code and use the v3 client correctly.\n\n## Installation ##\n**Please note:** If you want to install an older version of the Mollie API client (current major version is `v3`), then please refer to their respective github branches for installation instructions:\n- version 2.x.x is available from the [v2-develop branch](https://github.com/mollie/mollie-api-python/tree/v2-develop).\n- version 1.x.x is available from the [v1-develop branch](https://github.com/mollie/mollie-api-python/tree/v1-develop).\n\nBy far the easiest way to install the Mollie API client is to install it with [pip](https://pip.pypa.io). The command below will install the latest released version of the client.\n```shell\n$ pip install mollie-api-python\n```\nYou may also git checkout or [download all the files](https://github.com/mollie/mollie-api-python/archive/master.zip), and include the Mollie API client manually.\n\nCreate and activate a Python >= 3.8 virtual environment (inside a git checkout or downloaded archive).\n\n```shell\n$ cd mollie-api-python\n$ python -m venv .venv\n$ source .venv/bin/activate\n```\n\nInstall the additional requirements for the examples, then install the Mollie API client itself.\n```shell\n$ pip install flask\n$ pip install -e .\n```\n\nRun the examples.\n```shell\nexport MOLLIE_API_KEY=test_YourApiKey\n$ python examples/app.py\n```\n\nIf you are working from a development machine, you should use a tool like [ngrok.com](https://ngrok.com/) to get a publicly available URL that can be used in callback and redirect URLs. Start the service and expose the forwarding URL (https) to the mollie example code:\n\n```shell\nexport MOLLIE_API_KEY=test_YourApiKey\nexport MOLLIE_PUBLIC_URL=https://some.ngrok.url.io\n$ python examples/app.py\n```\n\n## How to receive payments ##\n\nTo successfully receive a payment, these steps should be implemented:\n\n1. Use the Mollie API client to create a payment with the requested amount, currency, 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.\n\n2. 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.\n\n3. The customer returns, and should be satisfied to see that the order was paid and is now being processed.\n\nFind our full documentation online on [docs.mollie.com](https://docs.mollie.com).\n\n## Getting started ##\n\nImporting the Mollie API Client\n```python\nfrom mollie.api.client import Client\n``` \nInitializing the Mollie API client, and setting your API key\n\n```python\nmollie_client = Client()\nmollie_client.set_api_key('test_dHar4XY7LxsDOtmnkVtjNVWXLSlXsM')\n``` \n\nCreating a new payment.\n\n```python\npayment = mollie_client.payments.create({\n    'amount': {\n        'currency': 'EUR',\n        'value': '10.00' \n    },\n    'description': 'My first API payment',\n    'redirectUrl': 'https://webshop.example.org/order/12345/',\n    'webhookUrl': 'https://webshop.example.org/mollie-webhook/',\n})\n```\n_After creation, the payment id is available in the `payment.id` property. You should store this id with your order._\n\nAfter storing the payment id you can send the customer to the checkout using the `payment.checkout_url`.  \n\nFor a payment create example, see [Example 1 - New Payment](https://github.com/mollie/mollie-api-python/blob/master/examples/01-new-payment.py).\n\nIn general, request body parameters for an API endpoint should be added to a dictionary and provided as the first argument (or `data` keyword argument). Query string parameters can be provided as keyword arguments.\n\n## Retrieving payments ##\nWe can use the `payment.id` to retrieve a payment and check if the payment `isPaid`.\n\n```python\npayment = mollie_client.payments.get(payment.id)\n\nif payment.is_paid():\n    print('Payment received.')\n```\n\nOr retrieve a collection of payments.\n\n```python\npayments = mollie_client.payments.list()\n```\n\nFor an extensive example of listing payments with the details and status, see [Example 5 - Payments History](https://github.com/mollie/mollie-api-python/blob/master/examples/05-payments-history.py).\n\n## Payment webhook ##\n\nWhen the status of a payment changes the `webhookUrl` we specified in the creation of the payment will be called.  \nThere we can use the `id` from our POST parameters to check te status and act upon that, see [Example 2 - Webhook verification](https://github.com/mollie/mollie-api-python/blob/master/examples/02-webhook-verification.py).\n\n\n## Multicurrency ##\nSince the 2.0 version of the API (supported by version 2.0.0 of the client) non-EUR payments for your customers is now supported.\nA full list of available currencies can be found [in our documentation](https://docs.mollie.com/guides/multicurrency).\n\n```python\npayment = mollie_client.payments.create({\n    'amount': {\n        'currency': 'USD', \n        'value': '10.00'\n    },\n    'description': 'Order #12345',\n    'redirectUrl': 'https://webshop.example.org/order/12345/',\n    'webhookUrl': 'https://webshop.example.org/mollie-webhook/',\n})\n```\n_After the customer completes the payment, the `payment.settlement_amount` will contain the amount + currency that will be settled on your account._\n\n### Fully integrated iDEAL payments ###\n\nIf you want to fully integrate iDEAL payments in your web site, some additional steps are required. \nFirst, you need to retrieve the list of issuers (banks) that support iDEAL and have your customer pick the issuer \nhe/she wants to use for the payment.\n\nRetrieve the iDEAL method and include the issuers\n\n```python\nmethod = mollie_client.methods.get(mollie.api.objects.Method.IDEAL, include='issuers')\n```\n\n_`method.issuers` will be a list of Issuer objects. Use the property `id` of this object in the\n API call, and the property `name` for displaying the issuer to your customer. For a more in-depth example, see [Example 4 - iDEAL payment](https://github.com/mollie/mollie-api-python/blob/master/examples/04-ideal-payment.py)._\n\n```python\npayment = mollie_client.payments.create({\n    'amount': {\n        'currency': 'EUR', \n        'value': '10.00'\n    },\n    'description': 'My first API payment',\n    'redirectUrl': 'https://webshop.example.org/order/12345/',\n    'webhookUrl': 'https://webshop.example.org/mollie-webhook/',\n    'method': mollie.api.objects.Method.IDEAL,\n    'issuer': selectedIssuerId,  # e.g. \"ideal_INGBNL2A\"\n})\n```\nThe `payment.checkout_url` is a URL that points directly to the online banking environment of the selected issuer.\n\n### Refunding payments ###\n\nThe API also supports refunding payments. Note that there is no confirmation and that all refunds are immediate and\ndefinitive. Refunds are only supported for iDEAL, credit card, Bancontact, SOFORT Banking, PayPal, Belfius Direct Net, KBC/CBC, \nING Home'Pay and bank transfer payments. Other types of payments cannot be refunded through our API at the moment.\n\n```python\npayment = mollie_client.payments.get(payment.id)\n\n# Refund \u20ac 2 of this payment\nrefund = payment.refunds.create({\n    'amount': {\n        'currency': 'EUR',\n        'value': '2.00'\n    }\n})\n```\n\nFor a working example, see [Example 11 - Refund payment](https://github.com/mollie/mollie-api-python/blob/master/examples/11-refund-payment.py).\n\n## OAuth2 ##\n\nAt https://docs.mollie.com/oauth/getting-started the OAuth process is explained. Please read this first.\n\nOAuth authentication process redirects back to your application. Therefore you should expose your local web server (the examples) as public urls. A webservice like [ngrok.com](https://ngrok.com/) can help you with that. To run the examples, take the following steps:\n\n1. Install the `ngrok` client (or a similar service), and make sure it works:\n    - Start the Mollie oauth examples app without configuration: `python examples/oauth/oauth_app.py`\n    - run `ngrok http 5000`, and visit the public URL from the ngrok client.\n    - You should see a barebones webapp saying `Mollie OAuth examples: You need to setup OAuth first`.\n    - Abort the examples app for now, but leave the ngrok client running. If you restart the ngrok client, you'll receive a new URL, and you will need to update the Mollie Redirect URI (from the next step) again.\n\n2. Login to your Mollie account, and visit Developers -> Your Apps. Create a new application. In the `Redirect URL` field, you enter the ngrok public URL you just visited, and append `/callback` to the end of the URL. After saving the new application, you'll receive a `Client ID` and a `Client Secret`.\n\n3. Go back to the examples app. Now that all other stuff is setup, we can run the examples with all required configuration:\n\n```shell\nexport MOLLIE_CLIENT_ID=your_client_id\nexport MOLLIE_CLIENT_SECRET=your_client_secret\nexport MOLLIE_PUBLIC_URL=https://some.ngrok.url.io\npython examples/oauth/oauth_app.py\n```\n\nAfter starting the application, visit the URL on the page to start the OAuth flow with Mollie.\n\nThe Authorize endpoint (where the URL takes you to) is the place on the Mollie website where the merchant logs in, and grants authorization to your client application. E.g. when the merchant clicks on the Connect with Mollie button, you should redirect the merchant to the Authorize endpoint.\n\nThe merchant can then grant the authorization to your client application for the scopes you have requested. This means that your application can access the merchants' data.\n\nMollie will then redirect the merchant back to the Redirect URI you have specified. The URI will contain some query parameters, which contains the auth token. At the page listening at the Redirect URI, you should extract that token, and use it to request a regular OAuth token.\n\n\n### Initializing via OAuth2 ###\n\nYou should implement the `get_token` and `set_token` methods yourself. They should retrieve and store the OAuth token that is sent from Mollie somewhere in your application (f.i. in the database).\n\nThe token data is JSON, which is handled as a dict.\n\nThese are example methods, you should use a storage method that fits your application.\n\n```python\ndef get_token():\n    \"\"\"\n    :return: token (dict) or None\n    \"\"\"\n    if os.path.exists('token.json'):\n        with open('token.json', 'r') as file:\n            return json.loads(file.read())\n\n\ndef set_token(token):\n    \"\"\"\n    :param token: token (dict)\n    :return: None\n    \"\"\"\n    with open('token.json', 'w') as file:\n        file.write(json.dumps(token))\n\n\nmollie_client = Client()\nis_authorized, authorization_url = mollie_client.setup_oauth(\n    client_id,\n    client_secret,\n    redirect_uri,\n    scope,\n    get_token(),\n    set_token,\n)\n# When \"is_authorized\" is False, you need to redirect the user to the authorization_url.\n\n# After the user confirms the authorization ate the Mollie Authorize page, she is redirected back to your redirect_uri.\n# The view on this uri should call setup_oauth_authorization_response(), with authorization_response as parameter.\n# This is the full callback URL (string) from the request that the user made when returning from the Mollie website.\n\nmollie_client.setup_oauth_authorization_response(authorization_response)\n\n# The token will be stored via your `set_token` method for future use. Expired tokens will be refreshed by the client automatically.\n\n# Now You can query the API:\n\nmollie_client.organizations.get('me')\n```\n\n## API documentation ##\nIf you wish to learn more about our API, please visit the [Mollie Developer Portal](https://www.mollie.com/en/developers). API Documentation is available in English.\n\n## Want to help us make our API client even better? ##\n\nWant to help us make our API client even better? We take [pull requests](https://github.com/mollie/mollie-api-python/pulls?utf8=%E2%9C%93&q=is%3Apr), sure. But how would you like to contribute to a technology oriented organization? Mollie is hiring developers and system engineers. [Check out our vacancies](https://jobs.mollie.com/) or [get in touch](mailto:personeel@mollie.com).\n\n## License ##\n[BSD (Berkeley Software Distribution) License](https://opensource.org/licenses/bsd-license.php).\nCopyright (c) 2014-2022, Mollie B.V.\n\n## Support ##\nContact: [www.mollie.com](https://www.mollie.com) \u2014 info@mollie.com \u2014 +31 20 820 20 70\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "Mollie API client for Python",
    "version": "3.6.0",
    "project_urls": {
        "Homepage": "https://github.com/mollie/mollie-api-python"
    },
    "split_keywords": [
        "mollie",
        "payment",
        "service",
        "ideal",
        "creditcard",
        "mistercash",
        "bancontact",
        "sofort",
        "sofortbanking",
        "sepa",
        "paypal",
        "paysafecard",
        "podiumcadeaukaart",
        "banktransfer",
        "direct debit",
        "belfius",
        "belfius direct net",
        "kbc",
        "cbc",
        "refunds",
        "payments",
        "gateway",
        "gift cards",
        "intersolve",
        "fashioncheque",
        "podium cadeaukaart",
        "yourgift",
        "vvv giftcard",
        "webshop giftcard",
        "nationale entertainment card",
        "klarna pay later",
        "klarna pay now",
        "klarna slice it",
        "przelewy24"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "628e6b87728386c98f7854554125a111df0299be11038d00120323fc8a8dfbc6",
                "md5": "0b9c2a39a78fe3dcd0ab790e898dbba7",
                "sha256": "919d36c6435b55608344b4346ea37b5b179eb6a2441c970046209798692be488"
            },
            "downloads": -1,
            "filename": "mollie_api_python-3.6.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "0b9c2a39a78fe3dcd0ab790e898dbba7",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 49741,
            "upload_time": "2023-10-13T12:11:48",
            "upload_time_iso_8601": "2023-10-13T12:11:48.640830Z",
            "url": "https://files.pythonhosted.org/packages/62/8e/6b87728386c98f7854554125a111df0299be11038d00120323fc8a8dfbc6/mollie_api_python-3.6.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e909847a6549df9957cc1ce3ff305e9abfc231d61dc93c97241806773cd3fc8d",
                "md5": "d096cb0e274ea3ba672ffe82256d5b1c",
                "sha256": "4483115524629389ed4fea2176c614906d9e26e532c7b463ff020fdefd140312"
            },
            "downloads": -1,
            "filename": "mollie-api-python-3.6.0.tar.gz",
            "has_sig": false,
            "md5_digest": "d096cb0e274ea3ba672ffe82256d5b1c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 36012,
            "upload_time": "2023-10-13T12:11:50",
            "upload_time_iso_8601": "2023-10-13T12:11:50.608916Z",
            "url": "https://files.pythonhosted.org/packages/e9/09/847a6549df9957cc1ce3ff305e9abfc231d61dc93c97241806773cd3fc8d/mollie-api-python-3.6.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-10-13 12:11:50",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "mollie",
    "github_project": "mollie-api-python",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "test_requirements": [],
    "lcname": "mollie-api-python"
}
        
Elapsed time: 0.18799s