Releases: mollie/mollie-api-ruby
Releases · mollie/mollie-api-ruby
Release 4.4.1
- Payment: mandate endpoint requires customer ID (#121) – @justincase
Release 4.4.0
- Mandate: add
mode
attribute - Organization: add
_links
helper method - Organization: add
locale
attribute - OrderLine: add
metadata
attribute - Method: add
minimumAmount
andmaximumAmount
attributes
Release 4.3.1
It's now possible to pass additional request parameters when creating a payment. This allows you to create a payment with a QR code embedded in the API response.
Example:
payment_params = {
amount: { value: '10.00', currency: 'EUR' },
method: 'ideal',
description: 'My first API payment',
redirect_url: 'https://webshop.example.org/order/12345/',
webhook_url: 'https://webshop.example.org/mollie-webhook/',
api_key: 'live_<api_key>'
}
payment = Mollie::Payment.create(
payment_params,
include: 'details.qrCode'
)
For more information, check out our documentation.
Release 4.3.0
Release 4.2.0
- Remove Bitcoin as a payment method.
Release 3.1.6
- Update
cacert.pem
Release 3.1.5
- Backported change which updates cacert.pem (#100)
Release 4.1.4
- Updated
cacert.pem
(#100)
Release 4.1.3
This patch exposes the following constants within the Mollie::Method
class:
Mollie::Method::KLARNASLICEIT
Mollie::Method::KLARNAPAYLATER
Release 4.1.2
New attributes/methods exposed on Mollie::Customer::Subscription
:
times_remaining
next_payment_date=(next_payment_date)
mandate_id
New attributes methods exposed on Mollie::Payment
:
refunded?
authorized_at=(authorized_at)
amount_captured
captures(options = {})