mollie-api-php icon indicating copy to clipboard operation
mollie-api-php copied to clipboard

Mollie API client for PHP

Results 20 mollie-api-php issues
Sort by recently updated
recently updated
newest added

## Specifications - API Version: 2.63.0 ## Describe the issue Hi, I was wondering if you guys could add PSR18 (https://github.com/php-fig/http-client) as supported option for Http Clients. The reason I'm...

## Specifications - API Version: v2 ## Describe the issue We are using the Mollie hosted checkout with the orders api. When creating an order we set the cancelUrl to...

This PR ensures integration consistency: `methods.allActive()` now returns the full set of activated methods regardless the currencies supported. Context: Mollie added support for `twint` recently, which does not appear on...

This PR adds support for retrieving payments for a payment link. ```php $paymentsPage = $mollie->paymentLinkPayments->pageForId(); // Or... $paymentLink = $mollie->paymentLinks->get("pl_4Y0eZitmBnQ6IDoMqZQKh"); $paymentsPage = $paymentLink->payments(); ``` Additionally, `$mollie->onboarding->submit(...);` was marked as deprecated.

- `MethodIssuerEndpoint` - `SubscriptionPaymentEndpoint` Note these endpoints are nested three levels deep, so I've overridden the `getResourcePath` methods.

UPGRADING.md is still in progress --- ## Some Context... ..on how the new request cycle works

Hi, I'm getting the following eror: Error executing API call (422: Unprocessable Entity): The card token cannot be used for this payment. Field: cardToken. When invoking a credit card payment....

Today we've found out that there is a possibility Mollie marks a payment method as status:null instead of activated or deactivated. We found this status on the method "voucher". Maybe...

Ik installed Mollie and finally got the payment part working. I only don't get the selected returnstatus via Webhook. I assume I made some misstakes. Can anybody advise? - With...